Skip to main content

Remove Member from KYC Group

Removes a user address from a KYC group.

Request

DELETE /v2/admin/kyc/groups/{groupID}/members/{userAddress}

Parameters

NameTypeInDescription
groupIDstringpathRequired. The ID of the KYC group
userAddressstringpathRequired. The wallet address of the user to remove

Headers

NameDescription
AuthorizationRequired. Bearer token for authentication

Example

curl --request DELETE \
--url '{{baseUrl}}/v2/admin/kyc/groups/67d8774e903bfcbe7eb5d93e/members/0x1234567890123456789012345678901234567890' \
--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

FieldTypeDescription
requires_approvalbooleanWhether the action requires approval
completedbooleanWhether the action was completed immediately

Status Codes

Status CodeDescription
200Success - Member removed from KYC group
400Bad Request - Invalid parameters
401Unauthorized - Invalid or missing authentication token
404Not Found - KYC group ID or member does not exist
500Internal Server Error