Get Background Check Batch
Retrieves details of a specific background check batch including its current status and associated information.
Path Parameters
Unique identifier of the background check batch (UUID format)
Response
Returns detailed information about the specified background check batch.
Unique identifier of the background check batch (UUID format)
Current status of the batch (e.g., pending, processing, completed, failed)
Number of orders in this batch
Timestamp when the batch was created (ISO 8601 format)
Timestamp when the batch was last updated (ISO 8601 format)
User or system that created the batch
Name of the entity associated with this batch
Example Request
curl -X GET "https://api.theary.ai/background-check/v1/batches/550e8400-e29b-41d4-a716-446655440000" \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json"
Example Response
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "completed",
"orderCount": 25,
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-16T14:45:00Z",
"createdBy": "user_123",
"entityName": "Apple Inc."
}