harvest_list_users
Retrieve and filter all users in your Harvest account to manage team access and permissions. Supports pagination and active status filtering for efficient user administration.
Instructions
List all users in the account with filtering. Use about {"tool": "harvest_list_users"} 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"
}