POST
/
v1
/
verifications
/
batch
curl --request POST \
  --url https://api.soharhealth.com/v1/verifications/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "verifications": [
    {
      "firstName": "John",
      "lastName": "Doe",
      "dateOfBirth": "09/20/2023",
      "state": "CA",
      "memberId": "00000000",
      "payerId": "62308",
      "npi": "0123456789",
      "taxonomyCode": "2084P0800X",
      "placeOfService": "02",
      "id": "123456",
      "subscriber": {
        "firstName": "<string>",
        "lastName": "<string>",
        "dateOfBirth": "09/20/2023"
      }
    }
  ]
}'
{
  "results": [
    {
      "status": 201,
      "patientId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
      "verificationId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
      "error": "invalid_request_error",
      "param": "memberId",
      "id": "123456"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
verifications
object[]
required

Response

207
application/json
An array of results
results
object[]