# Record ClaimSoft Order Outcome

> Perform Record ClaimSoft Order Outcome through Consignment Intake.

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

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

- Handler: `record_consignment_claimsoft_order_outcome`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `order_create_result` — Order Create Result (json, required)
  Required JSON value.
- `expected_idempotency_key` — Expected Idempotency Key (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `recorded` — Recorded
- `document_id` — Document Id
- `workflow_run_id` — Workflow Run 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",
    "order_create_result",
    "expected_idempotency_key"
  ],
  "properties": {
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "order_create_result": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "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": {},
    "recorded": {},
    "document_id": {},
    "idempotency_key": {},
    "workflow_run_id": {}
  },
  "additionalProperties": true
}
```
