Skip to documentation
ClaimSoft integration

Add Order Items

Perform Add Order Items through ClaimSoft.

View as Markdown
claimsoft_add_order_items
writeclaimsoft

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • items
    jsonrequired
    Items

    Required JSON value.

  • expected_item_count
    number
    Expected Item Count

    Optional numeric value.

  • split_coding
    json
    Split Coding

    Optional JSON value.

Outputs

  • successSuccess
  • order_idOrder Id
  • items_createdItems Created
  • outcomeOutcome
  • items_skippedItems Skipped
  • split_coding_swapped_linesSplit Coding Swapped Lines
  • completeComplete
  • messageMessage
  • error_kindError Kind
  • errorError

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",
    "items"
  ],
  "properties": {
    "items": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "split_coding": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "expected_item_count": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "message": {},
    "outcome": {},
    "success": {},
    "complete": {},
    "order_id": {},
    "error_kind": {},
    "items_created": {},
    "items_skipped": {},
    "split_coding_swapped_lines": {}
  },
  "additionalProperties": true
}
View all ClaimSoft actions