Skip to documentation
ClaimSoft integration

Resolve Order Items

Perform Resolve Order Items through ClaimSoft.

View as Markdown
claimsoft_resolve_order_items
readclaimsoft

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • item_codes
    json
    Item Codes

    Optional JSON value.

  • item_quantities
    json
    Item Quantities

    Optional JSON value.

  • item_identities
    json
    Item Identities

    Optional JSON value.

  • warehouse_id
    expressionrequired
    Warehouse Id

    Required literal value or workflow expression.

  • warehouse_name
    textrequired
    Warehouse Name

    Required text value.

  • dos_from
    textrequired
    Dos From

    Required text value.

  • dos_to
    textrequired
    Dos To

    Required text value.

  • diagnosis_codes
    json
    Diagnosis Codes

    Optional JSON value.

  • skip_out_of_stock_items
    boolean
    Skip Out Of Stock Items

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • 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",
    "warehouse_id",
    "warehouse_name",
    "dos_from",
    "dos_to"
  ],
  "properties": {
    "dos_to": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "dos_from": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "item_codes": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "warehouse_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "warehouse_name": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "diagnosis_codes": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "item_identities": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "item_quantities": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "skip_out_of_stock_items": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {}
  },
  "additionalProperties": true
}
View all ClaimSoft actions