v1

latestOpenAPI 3.0.32026-07-14265579.8 KB
Order

Returns the list of verification attempts on Employment and Education verifications.

Accurate’ s API allows you to retrieve the verification attempts on Employment and Education verifications. With this functionality, you can retrieve the verification attempts for orders placed through the Accurate Client Portal, an ATS integration, or other ordering method. To retrieve the verification attempts, you can use the supportReferenceId or orderId.

get/order/{id}/verificationAttempt

Path parameters

idstring required

Unique id for background investigation order Accepted values are supportReferenceId & order id

Response

Success Response

orderIdstring
supportReferenceIdstring
statusstring
candidateIdstring

Example response

{
  "orderId": "5e1befb7ace8ae162bd630d8",
  "supportReferenceId": "Y10001631",
  "status": "PENDING",
  "candidateId": "5e1befb7ace8ae162bd630d8",
  "products": [
    {
      "productType": "EDU",
      "status": "Pending",
      "attemptHistory": [
        {
          "attemptType": "Phone",
          "attemptMethod": "Call",
          "attemptMethodDetail": "555-823-6284",
          "contactName": "Manager A",
          "contactTitle": "Admin Assistant",
          "attemptComment": "Spoke to manager asked to fax verification."
        }
      ]
    }
  ]
}