GET
/
v2
/
verifications
/
{verificationId}
curl --request GET \
  --url https://api.soharhealth.com/v2/verifications/{verificationId} \
  --header 'Authorization: Bearer <token>'
{
  "verificationId": "fb701ac1-1246-4860-b1ec-bd916b97a990",
  "created": "2024-01-01T12:00:00.000Z",
  "status": "complete.eligible",
  "id": "123456",
  "benefits": [
    {
      "networkStatus": "inn",
      "tier": 1,
      "copay": 30,
      "coinsurance": 0.1,
      "deductible": {
        "total": 1000,
        "remaining": 847.56,
        "coverageLevelCode": "IND"
      },
      "outOfPocket": {
        "total": 10000,
        "remaining": 5103.21
      }
    }
  ],
  "relatedEntities": [
    {
      "id": "01260",
      "name": "Magellan",
      "memberId": "00000000",
      "entityIdentifierCode": "PRP"
    }
  ],
  "patient": {
    "firstName": "JOHN",
    "lastName": "DOE",
    "dateOfBirth": "09/20/2023",
    "memberId": "00000000",
    "subscriberRelationshipCode": "18",
    "address": {
      "address1": "1 BROADWAY",
      "address2": "P.O. BOX 123",
      "city": "LOS ANGELES",
      "state": "CA",
      "zipCode": "90210"
    }
  },
  "subscriber": {
    "firstName": "JOHN",
    "lastName": "DOE"
  },
  "plan": {
    "name": "OPEN CHOICE",
    "insuranceTypeCode": "HM",
    "startDate": "09/20/2023",
    "endDate": "09/20/2023"
  },
  "payer": {
    "id": "60054",
    "name": "Aetna"
  },
  "group": {
    "number": "123456",
    "name": "ACME CORPORATION"
  }
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
A verification
verificationId
string

The Sohar ID for the verification

Example:

"fb701ac1-1246-4860-b1ec-bd916b97a990"

created
string

An ISO 8601 date and time string describing when the verification was created

Example:

"2024-01-01T12:00:00.000Z"

status
string

The status of the verification

Example:

"complete.eligible"

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"

benefits
object[]

An array of related entities

patient
object
subscriber
object
plan
object
payer
object
group
object