harvest_list_clients
Retrieve a list of clients from Harvest with options to filter by active status and control pagination for efficient client management.
Instructions
List all clients with filtering options. Use about {"tool": "harvest_list_clients"} for detailed parameters and examples.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
is_active | No | Filter by active status | |
page | No | Page number | |
per_page | No | Results per page (max 100) |
Input Schema (JSON Schema)
{
"properties": {
"is_active": {
"description": "Filter by active status",
"type": "boolean"
},
"page": {
"description": "Page number",
"type": "number"
},
"per_page": {
"description": "Results per page (max 100)",
"type": "number"
}
},
"type": "object"
}