Delete User KYC Token
Revokes the KYC token for a specific user by their ID.
Request
DELETE /v2/users/users/{id}/kyc-token
Parameters
| Name | Type | In | Description |
|---|---|---|---|
id | string | path | Required. The ID of the user whose KYC token will be revoked |
Headers
| Name | Description |
|---|---|
Authorization | Required. 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 Code | Description |
|---|---|
| 204 | Success - KYC token revoked successfully |
| 401 | Unauthorized - Invalid or missing authentication token |
| 404 | Not Found - User ID does not exist |
| 500 | Internal Server Error |