Export Report
Perform Export Report through ClaimSoft.
claimsoft_export_reportwriteclaimsoft
Inputs
- Report Id
report_idexpressionrequiredRequired literal value or workflow expression.
- Parameters
parametersjsonOptional JSON value.
- Max Rows
max_rowsnumberOptional numeric value.
Default:
500 - Skip Rows
skip_rowsnumberOptional numeric value.
Default:
0 - Poll Interval Seconds
poll_interval_secondsnumberOptional numeric value.
Default:
15 - Timeout Seconds
timeout_secondsnumberOptional numeric value.
Default:
600
Outputs
successSuccessreport_idReport Idreport_nameReport Namereport_run_idReport Run Idreport_statusReport Statuscreated_dateCreated Datestorage_keyStorage KeyfilenameFilenamemime_typeMime Typesize_bytesSize Bytesdownload_urlDownload UrlpollsPollsrowsRowsorder_idsOrder IdstotalTotaltruncatedTruncatederrorError
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
}