nowcerts_agent_getList
Retrieve and filter insurance agents from NowCerts with search criteria, column selection, and pagination options for efficient data management.
Instructions
Retrieve a list of agents with search, filtering, and pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
columns | No | Columns to return in the response | |
order_by | No | Field to order results by | |
order_by_direction | No | Order direction | |
page | No | Page number for pagination | |
per_page | No | Number of results per page | |
search_criteria | No | Search criteria for filtering agents |
Input Schema (JSON Schema)
{
"properties": {
"columns": {
"description": "Columns to return in the response",
"items": {
"type": "string"
},
"type": "array"
},
"order_by": {
"description": "Field to order results by",
"type": "string"
},
"order_by_direction": {
"description": "Order direction",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"per_page": {
"description": "Number of results per page",
"type": "number"
},
"search_criteria": {
"description": "Search criteria for filtering agents",
"type": "object"
}
},
"type": "object"
}