This API updates the KYC (Know Your Customer) level of a specific client.Request Body#
The request should be a JSON object containing the following fields:Field Name | Type | Required | Description |
---|
kycLevel | Integer | TRUE | The KYC level to be updated. |
clientId | Integer | TRUE | Unique identifier of the client. |
Response Body#
The response confirms the client ID of the updated KYC record.Field Name | Type | Description |
---|
clientId | Integer | Unique identifier of the client whose KYC was updated. |
Request
Body Params application/json
{
"kycLevel":1,
"clientId": 70
}
Request samples
curl --location --request POST '/core/account/updatekyc' \
--header 'Content-Type: application/json' \
--data-raw '{
"kycLevel":1,
"clientId": 70
}'
Responses
application/json Modified at 2025-03-19 15:02:37