# Update Order Status

> Perform Update Order Status through ClaimSoft.

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

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

- Handler: `claimsoft_update_order_status`

- Connection type: `claimsoft`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `status_value` — Status Value (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `state` — State
- `verified` — Verified
- `review_required` — Review Required
- `status_id` — Status Id
- `status_description` — Status Description
- `error_kind` — Error Kind
- `message` — Message
- `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",
    "status_value"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "status_value": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "state": {},
    "message": {},
    "success": {},
    "verified": {},
    "status_id": {},
    "error_kind": {},
    "review_required": {},
    "status_description": {}
  },
  "additionalProperties": true
}
```
