# Export Report

> Perform Export Report through ClaimSoft.

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

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

- Handler: `claimsoft_export_report`

- Connection type: `claimsoft`

## Inputs

- `report_id` — Report Id (expression, required)
  Required literal value or workflow expression.
- `parameters` — Parameters (json)
  Optional JSON value.
- `max_rows` — Max Rows (number)
  Optional numeric value.
  Default: `500`
- `skip_rows` — Skip Rows (number)
  Optional numeric value.
  Default: `0`
- `poll_interval_seconds` — Poll Interval Seconds (number)
  Optional numeric value.
  Default: `15`
- `timeout_seconds` — Timeout Seconds (number)
  Optional numeric value.
  Default: `600`

## Outputs

- `success` — Success
- `report_id` — Report Id
- `report_name` — Report Name
- `report_run_id` — Report Run Id
- `report_status` — Report Status
- `created_date` — Created Date
- `storage_key` — Storage Key
- `filename` — Filename
- `mime_type` — Mime Type
- `size_bytes` — Size Bytes
- `download_url` — Download Url
- `polls` — Polls
- `rows` — Rows
- `order_ids` — Order Ids
- `total` — Total
- `truncated` — Truncated
- `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": [
    "report_id"
  ],
  "properties": {
    "max_rows": {
      "type": "number",
      "default": 500,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "report_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "skip_rows": {
      "type": "number",
      "default": 0,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "parameters": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "timeout_seconds": {
      "type": "number",
      "default": 600,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "poll_interval_seconds": {
      "type": "number",
      "default": 15,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "rows": {},
    "error": {},
    "polls": {},
    "total": {},
    "success": {},
    "filename": {},
    "mime_type": {},
    "order_ids": {},
    "report_id": {},
    "truncated": {},
    "size_bytes": {},
    "report_name": {},
    "storage_key": {},
    "created_date": {},
    "download_url": {},
    "report_run_id": {},
    "report_status": {}
  },
  "additionalProperties": true
}
```
