Skip to documentation
Parachute Health integration

Get Order Patient Info

Perform Get Order Patient Info through Parachute Health.

View as Markdown
parachute_get_order_patient_info
readparachute

Inputs

  • order_id
    textrequired
    Order Id

    Required text value.

  • supplier_id
    text
    Supplier Id

    Optional text value.

Outputs

  • patient_idPatient Id
  • first_nameFirst Name
  • last_nameLast Name
  • date_of_birthDate Of Birth
  • sexSex
  • mrnMrn
  • addressAddress
  • primary_insurancePrimary Insurance
  • insurance_policiesInsurance Policies
  • icd10_codesIcd10 Codes
  • doctorDoctor
  • clinical_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
}
View all Parachute Health actions