Skip to main content

Get KYC Group by ID

Retrieves detailed information about a specific KYC group.

Request

GET /v2/admin/kyc/groups/{groupID}

Parameters

NameTypeInDescription
groupIDstringpathRequired. The ID of the KYC group to retrieve

Headers

NameDescription
AuthorizationRequired. Bearer token for authentication

Example

curl --request GET \
--url '{{baseUrl}}/v2/admin/kyc/groups/67d8774e903bfcbe7eb5d93e' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'

Response

{
"id": "67d8774e903bfcbe7eb5d93e",
"group_id": 1,
"name": "Verified Users",
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-15T10:30:00Z",
"deleted_at": null
}

Response Fields

FieldTypeDescription
idstringUnique identifier for the KYC group
group_idintegerGroup ID number
namestringName of the KYC group
created_atstringISO 8601 timestamp when the group was created
updated_atstringISO 8601 timestamp when the group was updated
deleted_atstring/nullISO 8601 timestamp when the group was deleted (null if not deleted)

Status Codes

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