Record ClaimSoft Order Outcome
Perform Record ClaimSoft Order Outcome through Consignment Intake.
record_consignment_claimsoft_order_outcomewrite
Inputs
- Document Id
document_idexpressionrequiredRequired literal value or workflow expression.
- Order Create Result
order_create_resultjsonrequiredRequired JSON value.
- Expected Idempotency Key
expected_idempotency_keyexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccessrecordedRecordeddocument_idDocument Idworkflow_run_idWorkflow Run Idorder_idOrder Ididempotency_keyIdempotency KeycreatedCreatederrorError
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": [
"document_id",
"order_create_result",
"expected_idempotency_key"
],
"properties": {
"document_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"order_create_result": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"expected_idempotency_key": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"created": {},
"success": {},
"order_id": {},
"recorded": {},
"document_id": {},
"idempotency_key": {},
"workflow_run_id": {}
},
"additionalProperties": true
}