Attach WIP Workflow
Perform Attach WIP Workflow through ClaimSoft.
claimsoft_attach_whipwriteclaimsoft
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
- Whip Item Number
whip_item_numbertextrequiredRequired text value.
Outputs
successSuccessorder_idOrder Idwip_idWip IdoutcomeOutcomeattachedAttachedmessageMessageerror_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",
"patient_id",
"whip_item_number"
],
"properties": {
"order_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"whip_item_number": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"wip_id": {},
"message": {},
"outcome": {},
"success": {},
"attached": {},
"order_id": {},
"error_kind": {}
},
"additionalProperties": true
}