cURL
curl --request GET \ --url https://api.theary.ai/background-check/v1/orders \ --header 'Authorization: Bearer <token>'
{ "data": [ {} ], "pagination": { "page": 123, "limit": 123, "total": 123, "totalPages": 123 } }
List background check orders for specific tenant
Show Pagination Properties
curl -X GET "https://api.theary.ai/background-check/v1/orders?page=1&limit=20" \ -H "Authorization: Bearer YOUR_JWT_TOKEN" \ -H "Content-Type: application/json"
{ "data": [ { "id": "550e8400-e29b-41d4-a716-446655440000", "status": "completed", "applicant": { "firstName": "John", "lastName": "Smith" }, "entityName": "Apple Inc.", "jobTitle": "Senior Software Developer", "createdAt": "2024-01-15T10:30:00Z", "updatedAt": "2024-01-16T14:45:00Z" }, { "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8", "status": "in_progress", "applicant": { "firstName": "Jane", "lastName": "Doe" }, "entityName": "Google LLC", "jobTitle": "Product Manager", "createdAt": "2024-01-14T09:15:00Z", "updatedAt": "2024-01-15T16:20:00Z" } ], "pagination": { "page": 1, "limit": 20, "total": 150, "totalPages": 8 } }