POST
/
v1
/
verifications
curl --request POST \
  --url https://api.soharhealth.com/v1/verifications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "patientId": "e0e2b88e-7387-4b27-aa89-e77fcf9c049c",
  "memberId": "000000",
  "payerId": "62308"
}'
{
  "patientId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "verificationId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
patientId
string
required

The Sohar ID for the patient

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"

memberId
string
required

The insurance member ID

Example:

"00000000"

payerId
string
required

The payer ID. See the Sohar payer list

Example:

"62308"

npi
string

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

Example:

"0123456789"

taxonomyCode
string

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

Example:

"2084P0800X"

placeOfService
string

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

Example:

"02"

id
string

An optional identifier for the verification

Maximum length: 45
Example:

"123456"

subscriber
object

An optional object to describe the subscriber related to the insurance member ID. Used when the patient is a dependent - the subscriber is typically a parent or spouse

Response

201
application/json
A verification ID
patientId
string

The Sohar ID for the patient

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"

verificationId
string

The Sohar ID for the verification

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"