Assign WIP Task Group
Perform Assign WIP Task Group through ClaimSoft.
claimsoft_assign_wip_task_groupwriteclaimsoft
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 Description
task_descriptiontextrequiredRequired text value.
- User Group Id
user_group_idexpressionrequiredRequired literal value or workflow expression.
- User Group Name
user_group_nametextrequiredRequired text value.
Outputs
successSuccessassignedAssignedtask_openTask Openwip_idWip IdoutcomeOutcomeerror_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",
"task_description",
"user_group_id",
"user_group_name"
],
"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"
},
"user_group_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"user_group_name": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"task_description": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"wip_id": {},
"outcome": {},
"success": {},
"assigned": {},
"task_open": {},
"error_kind": {}
},
"additionalProperties": true
}