GET
/
v1
/
verifications
/
{verificationId}
curl --request GET \
  --url https://api.soharhealth.com/v1/verifications/{verificationId} \
  --header 'Authorization: Bearer <token>'
{
  "patientId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "verificationId": "fb701ac1-1246-4860-b1ec-bd916b97a990",
  "timestamp": "2024-01-01T12:00:00.000Z",
  "status": "complete.eligible",
  "memberId": "00000000",
  "coverageStartDate": "09/20/2023",
  "coverageEndDate": "09/20/2023",
  "payerId": "60054",
  "payerName": "Aetna",
  "planName": "Open Choice",
  "groupNumber": "123456",
  "groupName": "Acme Corporation",
  "insuranceTypeCode": "HM",
  "id": "123456",
  "benefits": [
    {
      "networkStatus": "inn",
      "tier": 1,
      "coinsurance": 0.1,
      "copay": 30,
      "totalDeductible": 1000,
      "remainingDeductible": 847.56,
      "outOfPocket": 10000,
      "outOfPocketRemaining": 5103.21,
      "coverageLevelCode": "IND"
    }
  ],
  "relatedEntities": [
    {
      "payerId": "01260",
      "payerName": "Magellan",
      "memberId": "00000000",
      "entityIdentifierCode": "PRP"
    }
  ],
  "patient": {
    "firstName": "John",
    "lastName": "Doe",
    "dateOfBirth": "09/20/2023",
    "state": "CA",
    "address": "1 BROADWAY, LOS ANGELES, CA 90210",
    "subscriberRelationshipCode": "18"
  },
  "subscriber": {
    "firstName": "JOHN",
    "lastName": "DOE"
  }
}

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

The response is of type object.