Get KYC Group by ID
Retrieves detailed information about a specific KYC group.
Request
GET /v2/admin/kyc/groups/{groupID}
Parameters
| Name | Type | In | Description |
|---|---|---|---|
groupID | string | path | Required. The ID of the KYC group to retrieve |
Headers
| Name | Description |
|---|---|
Authorization | Required. 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": "Premium Investors",
"created_at": "2025-01-15T10:30:00.000Z",
"updated_at": "2025-01-15T10:30:00.000Z",
"deleted_at": null
}
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the KYC group |
group_id | integer | Numeric group identifier |
name | string | Name of the KYC group |
created_at | string | ISO 8601 timestamp when the group was created |
updated_at | string | ISO 8601 timestamp when the group was updated |
deleted_at | string/null | ISO 8601 timestamp when the group was deleted (null if not deleted) |
Status Codes
| Status Code | Description |
|---|---|
| 200 | Success |
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Invalid or missing authentication token |
| 404 | Not Found - KYC group ID does not exist |
| 500 | Internal Server Error |