Skip to main content

Delete User KYC Token

Revokes the KYC token for a specific user by their ID.

Request

DELETE /v2/users/users/{id}/kyc-token

Parameters

NameTypeInDescription
idstringpathRequired. The ID of the user whose KYC token will be revoked

Headers

NameDescription
AuthorizationRequired. Bearer token for authentication

Example

curl --request DELETE \
--url '{{baseUrl}}/v2/users/users/680c02896d91ca0145cfeb81/kyc-token' \
--header 'Authorization: Bearer {{token}}'

Response

A successful response returns no content:

Status Code: 204 No Content

Response Body: No content

Status Codes

Status CodeDescription
204Success - KYC token revoked successfully
401Unauthorized - Invalid or missing authentication token
404Not Found - User ID does not exist
500Internal Server Error