Skip to documentation
ClaimSoft integration

Export Report

Perform Export Report through ClaimSoft.

View as Markdown
claimsoft_export_report
writeclaimsoft

Inputs

  • report_id
    expressionrequired
    Report Id

    Required literal value or workflow expression.

  • parameters
    json
    Parameters

    Optional JSON value.

  • max_rows
    number
    Max Rows

    Optional numeric value.

    Default: 500

  • skip_rows
    number
    Skip Rows

    Optional numeric value.

    Default: 0

  • poll_interval_seconds
    number
    Poll Interval Seconds

    Optional numeric value.

    Default: 15

  • timeout_seconds
    number
    Timeout Seconds

    Optional numeric value.

    Default: 600

Outputs

  • successSuccess
  • report_idReport Id
  • report_nameReport Name
  • report_run_idReport Run Id
  • report_statusReport Status
  • created_dateCreated Date
  • storage_keyStorage Key
  • filenameFilename
  • mime_typeMime Type
  • size_bytesSize Bytes
  • download_urlDownload Url
  • pollsPolls
  • rowsRows
  • order_idsOrder Ids
  • totalTotal
  • truncatedTruncated
  • errorError

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
{
  "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
{
  "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
}
View all ClaimSoft actions