cURL
curl --request GET \ --url https://api.theary.ai/background-check/v1/orders/{id} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "status": "<string>", "applicant": { "firstName": "<string>", "lastName": "<string>", "ssn": "<string>", "email": "<string>", "phone": "<string>" }, "entityName": "<string>", "jobTitle": "<string>", "employmentDates": { "startDate": "<string>", "endDate": "<string>" }, "searchTypes": [ {} ], "createdAt": "<string>", "updatedAt": "<string>", "completedAt": "<string>" }
Retrieves details of a specific background check order
Show Applicant Properties
Show Employment Dates Properties
curl -X GET "https://api.theary.ai/background-check/v1/orders/550e8400-e29b-41d4-a716-446655440000" \ -H "Authorization: Bearer YOUR_JWT_TOKEN" \ -H "Content-Type: application/json"
{ "id": "550e8400-e29b-41d4-a716-446655440000", "status": "completed", "applicant": { "firstName": "John", "lastName": "Smith", "ssn": "***-**-6789", "email": "[email protected]", "phone": "+1-555-123-4567" }, "entityName": "Apple Inc.", "jobTitle": "Senior Software Developer", "employmentDates": { "startDate": "2020-01-15", "endDate": "2023-06-30" }, "searchTypes": [ { "searchType": "EMPLOYMENT", "searchTitle": "Senior Software Developer" }, { "searchType": "EDUCATION", "searchTitle": "Bachelor of Computer Science" } ], "createdAt": "2024-01-15T10:30:00Z", "updatedAt": "2024-01-16T14:45:00Z", "completedAt": "2024-01-16T14:45:00Z" }