Post Tomorrow Health Comment
Perform Post Tomorrow Health Comment through Tomorrow Health Intake.
gaboro_tomorrow_health_post_commentwritetomorrow_health
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Message
messagetextarearequiredRequired text value.
Outputs
successSuccessorder_idOrder Idcomment_idComment IdmessageMessageerrorErrorerror_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
}