# Recover ClaimSoft Order Outcome

> Perform Recover ClaimSoft Order Outcome through Consignment Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/consignment-intake/recover_consignment_claimsoft_order_outcome](https://genhealth.ai/docs/workflows/integrations/consignment-intake/recover_consignment_claimsoft_order_outcome)

Integration: [Consignment Intake](https://genhealth.ai/docs/workflows/integrations/consignment-intake.md)

- Handler: `recover_consignment_claimsoft_order_outcome`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `expected_idempotency_key` — Expected Idempotency Key (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `recovered` — Recovered
- `document_id` — Document Id
- `order_id` — Order Id
- `idempotency_key` — Idempotency Key
- `created` — Created
- `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": [
    "document_id",
    "expected_idempotency_key"
  ],
  "properties": {
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "expected_idempotency_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "created": {},
    "success": {},
    "order_id": {},
    "recovered": {},
    "document_id": {},
    "idempotency_key": {}
  },
  "additionalProperties": true
}
```
