Skip to main content

Delete KYC Token Address

Delete a KYC token address association for a token.

Endpoint: DELETE /api/v1/integration/tokens/{token_id}/kyc-tokens/{id}

Authentication: Required (Bearer token)

Required Headers:

Authorization: Bearer <access_token>
X-Target-Server: integration

Path Parameters

ParameterTypeRequiredDescription
token_idstring (UUID)YesToken ID
idstring (UUID)YesDistributor KYC Token ID

Response

Status: 204 No Content

The KYC token address association has been successfully deleted.

Example cURL Request

curl -X DELETE 'https://<base-url>/api/v1/integration/tokens/3c4da8b4-99e0-45ca-bb0b-221c3b1272b3/kyc-tokens/e28cae58-0c9c-4f71-91b4-e567e06cc6a7' \
-H "Authorization: Bearer <access_token>" \
-H "X-Target-Server: integration"