Read Sales Order
Perform Read Sales Order through Brightree.
brightree_read_sales_orderreadbrightree
Inputs
- Sales Order Key
sales_order_keyexpressionrequiredRequired literal value or workflow expression.
- Tabs
tabsmulti_selectOptional list of selected values.
Options: Order ("order"), Clinical ("clinical"), Insurance ("insurance"), Items ("items"), Purchasing ("purchasing"), Schedule ("schedule"), Proof of Delivery ("pod"), Messages ("messages"), Custom Fields ("custom_fields"), Forms ("forms"), History ("history"), Documents ("documents")
Outputs
successSuccesssales_order_keySales Order Keypatient_idPatient Idpatient_keyPatient Keypatient_namePatient Nameorder_numberOrder NumberheaderHeaderorderOrderclinicalClinicalinsuranceInsuranceitemsItemspurchasingPurchasingscheduleSchedulepodPodmessagesMessagescustom_fieldsCustom FieldsformsFormshistoryHistorydocumentsDocumentsurlUrlpatient_key_errorPatient Key ErrorerrorError
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": [
"sales_order_key"
],
"properties": {
"tabs": {
"type": "array",
"items": {
"enum": [
"order",
"clinical",
"insurance",
"items",
"purchasing",
"schedule",
"pod",
"messages",
"custom_fields",
"forms",
"history",
"documents"
],
"type": "string"
},
"description": "Optional list of selected values.",
"x-workflow-field-type": "multi_select"
},
"sales_order_key": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"pod": {},
"url": {},
"error": {},
"forms": {},
"items": {},
"order": {},
"header": {},
"history": {},
"success": {},
"clinical": {},
"messages": {},
"schedule": {},
"documents": {},
"insurance": {},
"patient_id": {},
"purchasing": {},
"patient_key": {},
"order_number": {},
"patient_name": {},
"custom_fields": {},
"sales_order_key": {},
"patient_key_error": {}
},
"additionalProperties": true
}