Add Order Items
Perform Add Order Items through ClaimSoft.
claimsoft_add_order_itemswriteclaimsoft
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Items
itemsjsonrequiredRequired JSON value.
- Expected Item Count
expected_item_countnumberOptional numeric value.
- Split Coding
split_codingjsonOptional JSON value.
Outputs
successSuccessorder_idOrder Iditems_createdItems CreatedoutcomeOutcomeitems_skippedItems Skippedsplit_coding_swapped_linesSplit Coding Swapped LinescompleteCompletemessageMessageerror_kindError KinderrorError
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
}