nowcerts_principal_getList
Retrieve paginated lists of principals with customizable search criteria, column selection, and sorting options for efficient data management.
Instructions
Get paginated list of principals
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"
}