Skip to content

SubmissionInput

If included, Healthie will attempt to submit an order. This must be enabled for your organization.

Fields

tests · [TestInput] · DEPRECATED. Requested lab test options
deprecated Use lab_option_ids to submit tests
lab_option_ids · [ID] · List of Lab Option IDs for tests being ordered
activate_by · ISO8601DateTime · An optional future date to process the order
physician_id · ID · Healthie ID of the physician who will review this order. If left empty default provider network will be used.
billing_type · LabOrderBilling · The billing type for this order. If missing, the provider will be billed.
icd_code_ids · [ID] · List of ICD-10 code ids for this order

Used By

Definition

"""
If included, Healthie will attempt to submit an order. This must be enabled for your organization.
"""
input SubmissionInput {
"""
DEPRECATED. Requested lab test options
"""
tests: [TestInput] @deprecated(reason: "Use lab_option_ids to submit tests")
"""
List of Lab Option IDs for tests being ordered
"""
lab_option_ids: [ID]
"""
An optional future date to process the order
"""
activate_by: ISO8601DateTime
"""
Healthie ID of the physician who will review this order. If left empty default provider network will be used.
"""
physician_id: ID
"""
The billing type for this order. If missing, the provider will be billed.
"""
billing_type: LabOrderBilling = PROVIDER
"""
List of ICD-10 code ids for this order
"""
icd_code_ids: [ID]
}