Skip to documentation
Tomorrow Health integration

Accept Order

Perform Accept Order through Tomorrow Health.

View as Markdown
tomorrow_health_accept_order
writetomorrow_health

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • estimated_delivery_at
    text
    Estimated Delivery At

    Optional text value.

  • line_item_estimated_delivery_at
    json
    Line Item Estimated Delivery At

    Optional JSON value.

  • additional_documentation_required
    booleanrequired
    Additional Documentation Required

    Required true-or-false value.

Outputs

  • successSuccess
  • acceptedAccepted
  • skippedSkipped
  • documentation_survey_submittedDocumentation Survey Submitted
  • additional_documentation_requiredAdditional Documentation Required
  • order_idOrder Id
  • estimated_delivery_atEstimated Delivery At
  • line_item_countLine Item Count
  • tomorrow_health_org_idTomorrow Health Org Id
  • tomorrow_health_org_nameTomorrow Health Org Name
  • tomorrow_health_supplier_idTomorrow Health Supplier Id
  • errorError

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
}
View all Tomorrow Health actions