Tross
GLACE

Fetch Patient

Fetch patient in Glace

POSThttps://api.ontross.com/api/integrations/glace/fetch-patient
Request Fields
input
object
required
Input object.
input.account_no
string
required
Account no
auth_id
string
required
Auth id
Output Fields
patient
object
Patient object.
patient.patient_name
string
Patient name
patient.account_no
string
Account no
patient.dob
string
Dob
patient.phone
string
Phone
patient.primary_insurance
string
Primary insurance
patient.primary_insurance_id
string
Primary insurance id
patient.allergies
string
Allergies
patient.gender
string
Gender
patient.principal_doctor
string
Principal doctor
patient.amount_due
string
Amount due
patient.copay
string
Copay
patient.address
string
Address
patient.cell_phone
string
Cell phone
patient.secondary_insurance
string
Secondary insurance
patient.secondary_insurance_id
string
Secondary insurance id
Code
curl --request POST \
  --url https://api.ontross.com/api/integrations/glace/fetch-patient \
  --header 'X-API-Key: REPLACE_KEY_VALUE' \
  --header 'content-type: application/json' \
  --data '{"input":{"account_no":"string"},"auth_id":"auth_uuid_here"}'
Request BODY
{
  "input": {
    "account_no": "string"
  },
  "auth_id": "auth_uuid_here"
}