v1

latestOpenAPI 3.0.0MIT2026-07-22275773.2 KB
Verifications

Create Verification

post/v2/verifications

Request body

payerIdstring uuid required

The payer ID. See the Sohar payer list

placeOfServiceCodestring required

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

specialtyCode'ABA' | 'IOP' | 'OCT' | 'PHT' | 'PRC' | 'PCH' | 'PSY' | 'SLP' | 'SUD' | 'UGC' | 'WMT' 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

idstring

An optional identifier for the verification

Example request

{
  "patient": {
    "firstName": "John",
    "lastName": "Doe",
    "dateOfBirth": "09/20/2023",
    "state": "CA",
    "memberId": "00000000"
  },
  "payerId": "62308",
  "placeOfServiceCode": "02",
  "specialtyCode": "PSY",
  "id": "123456",
  "subscriber": {
    "dateOfBirth": "09/20/2023"
  }
}

Response

A verification ID

verificationIdstring uuid

The Sohar ID for the verification

idstring nullable

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

Example response

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