GET
/
v1
/
discovery
/
{discoveryId}
curl --request GET \
  --url https://api.soharhealth.com/v1/discovery/{discoveryId} \
  --header 'Authorization: Bearer <token>'
{
  "status": "complete",
  "discoveryId": "fb701ac1-1246-4860-b1ec-bd916b97a990",
  "payerId": "62308",
  "memberId": "00000000"
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
A discovery
status
enum<string>
required

The status of the discovery request

Available options:
complete,
pending
discoveryId
string
required

The Sohar ID for the discovery

Example:

"fb701ac1-1246-4860-b1ec-bd916b97a990"

payerId
string

The payer ID. A null value will be returned if the status field is pending, or if the status field is complete and the discovery request was unsuccessful

Example:

"62308"

memberId
string

The insurance member ID. A null value will be returned if the status field is pending, or if the status field is complete and the discovery request was unsuccessful

Example:

"00000000"