# Complete WIP Tasks

> Perform Complete WIP Tasks through ClaimSoft.

Source: [https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_complete_wip_tasks](https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_complete_wip_tasks)

Integration: [ClaimSoft](https://genhealth.ai/docs/workflows/integrations/claim-soft.md)

- Handler: `claimsoft_complete_wip_tasks`

- Connection type: `claimsoft`

## Inputs

- `patient_id` — Patient Id (expression, required)
  Required literal value or workflow expression.
- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `wip_id` — Wip Id (expression, required)
  Required literal value or workflow expression.
- `task_descriptions` — Task Descriptions (json)
  Optional JSON value.

## Outputs

- `success` — Success
- `wip_id` — Wip Id
- `tasks_completed` — Tasks Completed
- `tasks_absent` — Tasks Absent
- `outcome` — Outcome
- `message` — Message
- `error_kind` — Error Kind
- `error` — Error

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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "wip_id": {},
    "message": {},
    "outcome": {},
    "success": {},
    "error_kind": {},
    "tasks_absent": {},
    "tasks_completed": {}
  },
  "additionalProperties": true
}
```
