Skip to documentation
Parachute Health integration

Ensure Global Comment

Perform Ensure Global Comment through Parachute Health.

View as Markdown
parachute_ensure_global_comment
writeparachute

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • supplier_id
    expression
    Supplier Id

    Optional literal value or workflow expression.

  • content
    textarearequired
    Content

    Required text value.

  • require_completed_signature
    boolean
    Require Completed Signature

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • order_idOrder Id
  • supplier_idSupplier Id
  • contentContent
  • createdCreated
  • already_existsAlready Exists
  • comment_idComment Id
  • matched_atMatched At
  • checked_event_countChecked Event Count
  • global_comment_countGlobal Comment Count
  • 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",
    "content"
  ],
  "properties": {
    "content": {
      "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"
    },
    "supplier_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "require_completed_signature": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "content": {},
    "created": {},
    "success": {},
    "order_id": {},
    "comment_id": {},
    "matched_at": {},
    "supplier_id": {},
    "error_message": {},
    "already_exists": {},
    "checked_event_count": {},
    "global_comment_count": {}
  },
  "additionalProperties": true
}
View all Parachute Health actions