nowcerts_insured_getList
Retrieve a paginated list of insureds with filtering options, column selection, and sorting capabilities to manage insurance client data efficiently.
Instructions
Retrieve a paginated list of insureds using /api/InsuredList()
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| columns | No | Columns to return | |
| order_by | No | Field to order by | |
| order_by_direction | No | ||
| page | No | ||
| per_page | No | ||
| search_criteria | No | Search criteria for filtering insureds |
Input Schema (JSON Schema)
{
"properties": {
"columns": {
"description": "Columns to return",
"items": {
"type": "string"
},
"type": "array"
},
"order_by": {
"description": "Field to order by",
"type": "string"
},
"order_by_direction": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"search_criteria": {
"description": "Search criteria for filtering insureds",
"type": "object"
}
},
"type": "object"
}