POST
/
KYB
/
personal
Initiate Personal AML Check
curl --request POST \
  --url https://sandbox-umbrella-api.azurewebsites.net/api/services/KYB/personal \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "companyId": "<string>",
  "requestId": "<string>"
}'
{
  "error": true,
  "message": "<string>",
  "version": "<string>",
  "data": {}
}
For a usage description of the KYB Personal Service, please refer to the KYB page.

Endpoint

POST /KYB/personal

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
companyId
string
required

Unique identifier for the company.

requestId
string
required

Unique identifier for the request.

Response

Successfully initiated personal AML check.

error
boolean

Indicates whether an error occurred.

message
string

Status message describing the operation result.

version
string | null

API version.

data
object

Empty object in this case.