Skip to main content
POST
/
customers
/
bulk-import-sumsub-tokens
Bulk import customers from Sumsub share tokens
curl --request POST \
  --url https://api.platform.dakota.xyz/customers/bulk-import-sumsub-tokens \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-idempotency-key: <x-idempotency-key>' \
  --data '
{
  "tokens": [
    "_act-sbx-jwt-eyJhbGciOiJub25lIn0...",
    "_act-sbx-jwt-eyKhbGciOiJub25lIn0..."
  ]
}
'
{
  "total": 2,
  "succeeded": 1,
  "failed": 1,
  "results": [
    {
      "name": "Sarah Williams (from Sumsub)",
      "success": true,
      "customer_id": "abc123",
      "application_id": "def456"
    },
    {
      "name": "Unknown",
      "success": false,
      "error": "Share token expired"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.dakota.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Headers

x-idempotency-key
string<uuid>
required

Unique key to ensure request idempotency. If the same key is used within a certain time window, the original response will be returned instead of executing the request again.

Body

application/json
tokens
string[]
required

List of Sumsub share tokens to import

Required array length: 1 - 100 elements

Response

Bulk import completed (individual results may include errors)

total
integer
succeeded
integer
failed
integer
results
object[]