update_client
Modify client details such as name or archive status within a Clockify workspace by specifying the workspace and client ID using this integration tool.
Instructions
Update an existing client
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archived | No | Whether client is archived | |
clientId | Yes | Client ID | |
name | No | Client name | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"archived": {
"description": "Whether client is archived",
"type": "boolean"
},
"clientId": {
"description": "Client ID",
"type": "string"
},
"name": {
"description": "Client name",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"clientId"
],
"type": "object"
}