Skip to main content

Add Member to KYC Group

Adds a user address to a KYC group.

Request

POST /v2/admin/kyc/groups/{groupID}/members

Parameters

NameTypeInDescription
groupIDstringpathRequired. The ID of the KYC group
user_addressstringbodyRequired. The wallet address of the user to add

Headers

NameDescription
AuthorizationRequired. Bearer token for authentication
Content-TypeRequired. Must be application/json

Request Body

{
"user_address": "0x1234567890123456789012345678901234567890"
}

Example

curl --request POST \
--url '{{baseUrl}}/v2/admin/kyc/groups/67d8774e903bfcbe7eb5d93e/members' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \
--header 'Content-Type: application/json' \
--data '{
"user_address": "0x1234567890123456789012345678901234567890"
}'

Response

A successful request returns an HTTP 201 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
201Success - Member added to KYC group
400Bad Request - Invalid parameters
401Unauthorized - Invalid or missing authentication token
404Not Found - KYC group ID does not exist
409Conflict - Member already exists in the group
500Internal Server Error