POST
/
v2
/
verifications
curl --request POST \
  --url https://api.soharhealth.com/v2/verifications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "patient": {
    "firstName": "John",
    "lastName": "Doe",
    "dateOfBirth": "09/20/2023",
    "state": "CA",
    "memberId": "00000000"
  },
  "payerId": "62308",
  "placeOfServiceCode": "02",
  "specialtyCode": "PSY",
  "id": "123456",
  "subscriber": {
    "firstName": "<string>",
    "lastName": "<string>",
    "dateOfBirth": "09/20/2023"
  }
}'
{
  "verificationId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "id": "123456"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
patient
object
required

An object to describe the patient

payerId
string
required

The payer ID. See the Sohar payer list

Example:

"62308"

placeOfServiceCode
string
required

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

Example:

"02"

specialtyCode
enum<string>
required

Specifies the specialty

ABA Applied Behavioral Analysis IOP Intensive Outpatient Program OCT Occupational Therapy PHT Physical Therapy PRC Primary Care PCH Psychiatry PSY Psychotherapy SLP Speech-Language Pathology SUD Substance Use Disorder UGC Urgent Care WMT Weight Management

Available options:
ABA,
IOP,
OCT,
PHT,
PRC,
PCH,
PSY,
SLP,
SUD,
UGC,
WMT
Example:

"PSY"

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
verificationId
string

The Sohar ID for the verification

Example:

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

id
string | null

An optional identifier for the verification. This is a user-defined value that can be used when creating the verification

Example:

"123456"