Skip to main content
POST
/
customers
/
bvnk
/
inquiry
Create BVNK Persona inquiry for a Dakota customer
curl --request POST \
  --url https://api.platform.dakota.xyz/customers/bvnk/inquiry \
  --header 'Content-Type: application/json' \
  --header 'x-idempotency-key: <x-idempotency-key>' \
  --data '
{
  "external_id": "org_123456789"
}
'
{
  "url": "https://withpersona.com/verify?inquiry-id=inq_123"
}

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
external_id
string
required

The id of the customer in the Dakota system

Minimum string length: 1
Example:

"org_123456789"

Response

BVNK Persona inquiry created successfully

url
string

The URL of the created BVNK Persona inquiry

Example:

"https://withpersona.com/verify?inquiry-id=inq_123"