nowcerts_claim_getList
Retrieve paginated claims data from NowCerts with customizable search criteria, column selection, and sorting options to manage insurance claims efficiently.
Instructions
Get paginated list of claims using /api/ClaimList()
Input Schema
Name | Required | Description | Default |
---|---|---|---|
columns | No | ||
order_by | No | ||
order_by_direction | No | ||
page | No | ||
per_page | No | ||
search_criteria | No |
Input Schema (JSON Schema)
{
"properties": {
"columns": {
"items": {
"type": "string"
},
"type": "array"
},
"order_by": {
"type": "string"
},
"order_by_direction": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"search_criteria": {
"type": "object"
}
},
"type": "object"
}