list_users
Retrieve and manage user data in Harvest accounts, filtering by active status and pagination. Simplify user oversight with precise query parameters for efficient account administration.
Instructions
List all users in your Harvest account.
Args:
    is_active: Pass true to only return active users and false to return inactive users
    page: The page number for pagination
    per_page: The number of records to return per page (1-2000)
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| is_active | No | ||
| page | No | ||
| per_page | No | 
Input Schema (JSON Schema)
{
  "properties": {
    "is_active": {
      "default": null,
      "title": "Is Active",
      "type": "boolean"
    },
    "page": {
      "default": null,
      "title": "Page",
      "type": "integer"
    },
    "per_page": {
      "default": null,
      "title": "Per Page",
      "type": "integer"
    }
  },
  "title": "list_usersArguments",
  "type": "object"
}