v1

latestOpenAPI 3.0.0MIT2026-07-22275773.2 KB
Legacy-Verifications

Create Verification

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

Request body

patientIdstring uuid required

The Sohar ID for the patient

memberIdstring required

The insurance member ID

payerIdstring uuid required

The payer ID. See the Sohar payer list

npistring

An NPI to identify the provider requesting benefits, typically a type 2 NPI

taxonomyCodestring

An optional taxonomy code to override the primary taxonomy code associated with the provider's NPI number

placeOfServicestring

An optional two-digit code that describes the setting in which a service was provided

idstring

An optional identifier for the verification

Example request

{
  "patientId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "memberId": "00000000",
  "payerId": "62308",
  "npi": "0123456789",
  "taxonomyCode": "2084P0800X",
  "placeOfService": "02",
  "id": "123456",
  "subscriber": {
    "dateOfBirth": "09/20/2023"
  }
}

Response

A verification ID

patientIdstring uuid

The Sohar ID for the patient

verificationIdstring uuid

The Sohar ID for the verification

Example response

{
  "patientId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "verificationId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
}