# Assign WIP Task Group

> Perform Assign WIP Task Group through ClaimSoft.

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

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

- Handler: `claimsoft_assign_wip_task_group`

- 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_description` — Task Description (text, required)
  Required text value.
- `user_group_id` — User Group Id (expression, required)
  Required literal value or workflow expression.
- `user_group_name` — User Group Name (text, required)
  Required text value.

## Outputs

- `success` — Success
- `assigned` — Assigned
- `task_open` — Task Open
- `wip_id` — Wip Id
- `outcome` — Outcome
- `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",
    "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

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "wip_id": {},
    "outcome": {},
    "success": {},
    "assigned": {},
    "task_open": {},
    "error_kind": {}
  },
  "additionalProperties": true
}
```
