Accept Order
Perform Accept Order through Tomorrow Health.
tomorrow_health_accept_orderwritetomorrow_health
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Estimated Delivery At
estimated_delivery_attextOptional text value.
- Line Item Estimated Delivery At
line_item_estimated_delivery_atjsonOptional JSON value.
- Additional Documentation Required
additional_documentation_requiredbooleanrequiredRequired true-or-false value.
Outputs
successSuccessacceptedAcceptedskippedSkippeddocumentation_survey_submittedDocumentation Survey Submittedadditional_documentation_requiredAdditional Documentation Requiredorder_idOrder Idestimated_delivery_atEstimated Delivery Atline_item_countLine Item Counttomorrow_health_org_idTomorrow Health Org Idtomorrow_health_org_nameTomorrow Health Org Nametomorrow_health_supplier_idTomorrow Health Supplier IderrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"order_id",
"additional_documentation_required"
],
"properties": {
"order_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"estimated_delivery_at": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"line_item_estimated_delivery_at": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"additional_documentation_required": {
"type": "boolean",
"description": "Required true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"skipped": {},
"success": {},
"accepted": {},
"order_id": {},
"line_item_count": {},
"estimated_delivery_at": {},
"tomorrow_health_org_id": {},
"tomorrow_health_org_name": {},
"tomorrow_health_supplier_id": {},
"documentation_survey_submitted": {},
"additional_documentation_required": {}
},
"additionalProperties": true
}