Create Internal Comment
Perform Create Internal Comment through Parachute Health.
parachute_create_internal_commentwriteparachute
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Supplier Id
supplier_idexpressionOptional literal value or workflow expression.
- Content
contenttextareaOptional text value.
Default:
"processed"
Outputs
successSuccessorder_idOrder Idsupplier_idSupplier IdcontentContentcomment_idComment Iderror_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"
],
"properties": {
"content": {
"type": "string",
"default": "processed",
"description": "Optional 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"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"content": {},
"success": {},
"order_id": {},
"comment_id": {},
"supplier_id": {},
"error_message": {}
},
"additionalProperties": true
}