Get Order Patient Info
Perform Get Order Patient Info through Parachute Health.
parachute_get_order_patient_inforeadparachute
Inputs
- Order Id
order_idtextrequiredRequired text value.
- Supplier Id
supplier_idtextOptional text value.
Outputs
patient_idPatient Idfirst_nameFirst Namelast_nameLast Namedate_of_birthDate Of BirthsexSexmrnMrnaddressAddressprimary_insurancePrimary Insuranceinsurance_policiesInsurance Policiesicd10_codesIcd10 CodesdoctorDoctorclinical_facilityClinical Facility
Output schema completeness: best_effort_declared
Safety
- External effect
- read
- Confirmation recommended
- No
- Retry safe
- Yes
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"order_id"
],
"properties": {
"order_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"supplier_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"mrn": {},
"sex": {},
"doctor": {},
"address": {},
"last_name": {},
"first_name": {},
"patient_id": {},
"icd10_codes": {},
"date_of_birth": {},
"clinical_facility": {},
"primary_insurance": {},
"insurance_policies": {}
},
"additionalProperties": true
}