Get Order Comments
Perform Get Order Comments through ClaimSoft.
claimsoft_get_order_commentsreadclaimsoft
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Claims Only
claims_onlybooleanOptional true-or-false value.
Default:
true
Outputs
order_idOrder IdtotalTotalcommentsCommentserrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- read
- Confirmation recommended
- No
- Retry safe
- Yes
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"order_id"
],
"properties": {
"order_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"claims_only": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"total": {},
"comments": {},
"order_id": {}
},
"additionalProperties": true
}