get_clients
Retrieve all clients within a Clockify workspace by specifying filters like name, archived status, and pagination. Streamlines workspace client management and organization.
Instructions
Get all clients in a workspace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archived | No | Filter by archived status | |
name | No | Filter by client name | |
page | No | Page number (default: 1) | |
pageSize | No | Page size (default: 50, max: 5000) | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"archived": {
"description": "Filter by archived status",
"type": "boolean"
},
"name": {
"description": "Filter by client name",
"type": "string"
},
"page": {
"description": "Page number (default: 1)",
"type": "number"
},
"pageSize": {
"description": "Page size (default: 50, max: 5000)",
"type": "number"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId"
],
"type": "object"
}