Skip to main content
PUT
/
v1
/
kyb
/
{kyb_id}
Update KYB answer
curl --request PUT \
  --url https://api.example.com/v1/kyb/{kyb_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "answer": {}
}'
{
  "message": "Answer updated successfully"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

kyb_id
string<uuid>
required

KYB answer UUID

Body

application/json
answer
object
required

Response

200 - application/json

Answer updated successfully

message
string
Example:

"Answer updated successfully"