Skip to main content
POST
/
sandbox
/
customers
/
{id}
/
kyb
/
simulate
Simulate KYB status update
curl --request POST \
  --url https://api.platform.dakota.xyz/sandbox/customers/{id}/kyb/simulate \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "status": "approved",
  "reason": "<string>"
}
'
{
  "message": "KYB status updated to approved"
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Customer ID

Body

application/json
status
enum<string>
required

New KYB status

Available options:
approved,
rejected,
in_review
reason
string

Optional reason for the status change

Response

KYB status updated successfully

message
string
Example:

"KYB status updated to approved"