create_client
Add a new client in Clockify by specifying the workspace ID and client name, with an optional archived status, to streamline client management and integration with the time tracking API.
Instructions
Create a new client
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archived | No | Whether client is archived (optional) | |
name | Yes | Client name | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"archived": {
"description": "Whether client is archived (optional)",
"type": "boolean"
},
"name": {
"description": "Client name",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"name"
],
"type": "object"
}