Skip to documentation
Tomorrow Health Intake integration

Post Tomorrow Health Comment

Perform Post Tomorrow Health Comment through Tomorrow Health Intake.

View as Markdown
gaboro_tomorrow_health_post_comment
writetomorrow_health

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • message
    textarearequired
    Message

    Required text value.

Outputs

  • successSuccess
  • order_idOrder Id
  • comment_idComment Id
  • messageMessage
  • errorError
  • error_messageError Message

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",
    "message"
  ],
  "properties": {
    "message": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "textarea"
    },
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "message": {},
    "success": {},
    "order_id": {},
    "comment_id": {},
    "error_message": {}
  },
  "additionalProperties": true
}
View all Tomorrow Health Intake actions