v1

latestOpenAPI 3.0.0MIT2026-07-22275773.2 KB
Legacy-Verifications

Create Verifications V1

This API is still available but no longer supported and is planned for deprecation in a future release; users should transition to the Create Verifications API.

post/v1/verifications/batch

Request body

Example request

{
  "verifications": [
    {
      "firstName": "John",
      "lastName": "Doe",
      "dateOfBirth": "09/20/2023",
      "state": "CA",
      "memberId": "00000000",
      "payerId": "62308",
      "npi": "0123456789",
      "taxonomyCode": "2084P0800X",
      "placeOfService": "02",
      "id": "123456",
      "subscriber": {
        "dateOfBirth": "09/20/2023"
      }
    }
  ]
}

Response

An array of results

Example response

{
  "results": [
    {
      "status": 201,
      "patientId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
      "verificationId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
      "error": "invalid_request_error",
      "param": "memberId",
      "id": "123456"
    }
  ]
}