Remove Token Blacklist Group
Removes a KYC group from a token's blacklist by KycTokenGroup ID.
Request
DELETE /v2/admin/kyc/tokens/{tokenID}/blacklist/groups/{kycTokenGroupID}
Parameters
| Name | Type | In | Description |
|---|---|---|---|
tokenID | string | path | Required. The ID of the token |
kycTokenGroupID | string | path | Required. The KycTokenGroup ID (blacklist entry to remove) |
Headers
| Name | Description |
|---|---|
Authorization | Required. Bearer token for authentication |
Example
curl --request DELETE \
--url '{{baseUrl}}/v2/admin/kyc/tokens/67d8774e903bfcbe7eb5d93e/blacklist/groups/67d8774e903bfcbe7eb5d93f' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'
Response
A successful request returns an HTTP 200 status code with the action response.
{
"requires_approval": false,
"completed": true
}
Response Fields
| Field | Type | Description |
|---|---|---|
requires_approval | boolean | Whether the action requires approval |
completed | boolean | Whether the action was completed immediately |
Status Codes
| Status Code | Description |
|---|---|
| 200 | Success - KYC group removed from token blacklist |
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Invalid or missing authentication token |
| 404 | Not Found - Token ID or KycTokenGroup ID does not exist |
| 500 | Internal Server Error |