POST
/
KYB
/
personal
curl --request POST \
  --url https://api-umbrella.io/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

200
application/json
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.