# Attach WIP Workflow

> Perform Attach WIP Workflow through ClaimSoft.

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

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

- Handler: `claimsoft_attach_whip`

- Connection type: `claimsoft`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `patient_id` — Patient Id (expression, required)
  Required literal value or workflow expression.
- `whip_item_number` — Whip Item Number (text, required)
  Required text value.

## Outputs

- `success` — Success
- `order_id` — Order Id
- `wip_id` — Wip Id
- `outcome` — Outcome
- `attached` — Attached
- `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": [
    "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

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