Skip to documentation
ClaimSoft integration

Get Order Comments

Perform Get Order Comments through ClaimSoft.

View as Markdown
claimsoft_get_order_comments
readclaimsoft

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • claims_only
    boolean
    Claims Only

    Optional true-or-false value.

    Default: true

Outputs

  • order_idOrder Id
  • totalTotal
  • commentsComments
  • errorError

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
}
View all ClaimSoft actions