Skip to main content
POST
/
customers
/
bridge
/
sync-customer-id
Sync Bridge Customer ID to Platform
curl --request POST \
  --url https://api.platform.dakota.xyz/customers/bridge/sync-customer-id \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "dakota_organization_id": "01ARZ3NDEKTSV4RRFFQ69G5FAV",
  "bridge_customer_id": "cus_1234567890abcdef"
}
'
{
  "message": "Bridge Customer ID synced successfully"
}

Authorizations

x-api-key
string
header
required

Body

application/json
dakota_organization_id
string
required

Dakota organization ID (maps to Platform customer external_id)

Minimum string length: 1
Example:

"01ARZ3NDEKTSV4RRFFQ69G5FAV"

bridge_customer_id
string
required

Bridge customer ID to store as provider_external_id

Minimum string length: 1
Example:

"cus_1234567890abcdef"

Response

Bridge Customer ID synced successfully

message
string
Example:

"Bridge Customer ID synced successfully"