Complete WIP Tasks
Perform Complete WIP Tasks through ClaimSoft.
claimsoft_complete_wip_taskswriteclaimsoft
Inputs
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Wip Id
wip_idexpressionrequiredRequired literal value or workflow expression.
- Task Descriptions
task_descriptionsjsonOptional JSON value.
Outputs
successSuccesswip_idWip Idtasks_completedTasks Completedtasks_absentTasks AbsentoutcomeOutcomemessageMessageerror_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": [
"patient_id",
"order_id",
"wip_id"
],
"properties": {
"wip_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"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"
},
"task_descriptions": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"wip_id": {},
"message": {},
"outcome": {},
"success": {},
"error_kind": {},
"tasks_absent": {},
"tasks_completed": {}
},
"additionalProperties": true
}