nowcerts_policy_getList
Retrieve paginated insurance policy lists from NowCerts with search filters, column selection, and sorting options to manage policy data efficiently.
Instructions
Get paginated list of policies using /api/PolicyList()
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| columns | No | ||
| order_by | No | Field to order by (businessSubType, effectiveDate, expirationDate) | |
| order_by_direction | No | ||
| page | No | ||
| per_page | No | ||
| search_criteria | No | Search criteria (is_quote, search_string, etc.) |
Input Schema (JSON Schema)
{
"properties": {
"columns": {
"items": {
"type": "string"
},
"type": "array"
},
"order_by": {
"description": "Field to order by (businessSubType, effectiveDate, expirationDate)",
"type": "string"
},
"order_by_direction": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"search_criteria": {
"description": "Search criteria (is_quote, search_string, etc.)",
"type": "object"
}
},
"type": "object"
}