# Clockify

Clockify is a free time tracking software that allows individuals and teams to track work hours across projects.

- **Category:** time tracking software
- **Auth:** API_KEY, OAUTH2
- **Composio Managed App Available?** No
- **Tools:** 75
- **Triggers:** 0
- **Slug:** `CLOCKIFY`
- **Version:** 20260316_00

## Tools

### Add User to Group

**Slug:** `CLOCKIFY_ADD_USER_TO_GROUP`

Tool to add a user to a user group in a Clockify workspace. Use when you need to add a specific user to an existing group.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `userId` | string | Yes | Represents user identifier to add to the group. |
| `userGroupId` | string | Yes | Represents user group identifier across the system. |
| `workspaceId` | string | Yes | Represents workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Client

**Slug:** `CLOCKIFY_CREATE_CLIENT`

Tool to add a new client to a workspace. Use when you need to create a client in a specific workspace.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | Represents client name (0..100 characters). |
| `note` | string | No | Represents additional notes for the client (0..3000 characters). |
| `email` | string | No | Valid client email address. |
| `address` | string | No | Represents client's address (0..3000 characters). |
| `workspaceId` | string | Yes | Represents workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create New Project

**Slug:** `CLOCKIFY_CREATE_NEW_PROJECT`

Tool to create a new project in a Clockify workspace. Use when you need to create a project with name, color, billable status, visibility, and optional client association.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Project name (required). |
| `note` | string | No | Additional notes for the project (0..3000 characters). |
| `color` | string | No | Project color in hex format (e.g., #FF5733). |
| `public` | boolean | No | Project visibility - true for public, false for private. |
| `billable` | boolean | No | Whether the project is billable. Defaults to false if not provided. |
| `clientId` | string | No | ID of the client associated with the project. |
| `estimate` | object | No | Time estimate settings for the project. |
| `hourlyRate` | object | No | Hourly rate for the project containing amount and currency. |
| `workspaceId` | string | Yes | Workspace ID where the project will be created. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Shared Report

**Slug:** `CLOCKIFY_CREATE_SHARED_REPORT`

Tool to create a shared report in Clockify. Use when generating shareable summary, detailed, or weekly reports with custom date ranges and grouping options.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Name of the shared report. |
| `type` | string ("SUMMARY" | "DETAILED" | "WEEKLY") | Yes | Type of report to generate (SUMMARY, DETAILED, or WEEKLY). |
| `filter` | object | Yes | Filter configuration for the report including date ranges and grouping. |
| `isPublic` | boolean | Yes | Whether the report is publicly accessible. |
| `fixedDate` | boolean | Yes | Whether the date range is fixed or dynamic. |
| `workspaceId` | string | Yes | Workspace identifier where the shared report will be created. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Task

**Slug:** `CLOCKIFY_CREATE_TASK`

Tool to add a new task to a project in Clockify. Use when you need to create a task with optional time estimates, assignees, and billable status.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Name of the task to create. |
| `status` | string ("ACTIVE" | "DONE") | No | Task status. |
| `billable` | boolean | No | Whether the task is billable. Defaults to project settings if not provided. |
| `estimate` | string | No | Time estimate in ISO 8601 duration format (e.g., PT2H30M for 2 hours 30 minutes). |
| `projectId` | string | Yes | Project identifier where the task will be created. |
| `assigneeIds` | array | No | Array of user IDs to assign to the task. |
| `workspaceId` | string | Yes | Workspace identifier where the project exists. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Templates On Workspace

**Slug:** `CLOCKIFY_CREATE_TEMPLATES_ON_WORKSPACE`

Tool to create templates on a Clockify workspace. Use when you need to create one or more templates with associated projects and tasks for reusable project structures.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `templates` | array | Yes | List of templates to create on the workspace. Each template requires a name and at least one project. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Time Entry

**Slug:** `CLOCKIFY_CREATE_TIME_ENTRY`

Tool to create a new time entry in a Clockify workspace. Use when logging time with start/end timestamps, project/task/tag associations, and billable status.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `end` | string | No | End time in ISO 8601 format. If omitted, timer will be running. |
| `start` | string | Yes | Start time in ISO 8601 format (e.g., 2024-01-15T09:00:00Z). |
| `tagIds` | array | No | List of tag IDs to associate with this time entry. |
| `taskId` | string | No | ID of the task this time entry is associated with. |
| `billable` | boolean | No | Whether the time entry is billable. Defaults to project settings if not provided. |
| `projectId` | string | No | ID of the project this time entry belongs to. |
| `description` | string | No | Description of the work done (0..3000 characters). |
| `workspaceId` | string | Yes | Workspace identifier where the time entry will be created. |
| `customFieldValues` | array | No | List of custom field values for this time entry. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create User Group

**Slug:** `CLOCKIFY_CREATE_USER_GROUP`

Tool to create a new user group in a workspace. Use when you need to add a group to organize users within a specific workspace.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Represents a user group name (0..100 characters). |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create User Time Entry

**Slug:** `CLOCKIFY_CREATE_USER_TIME_ENTRY`

Tool to create a time entry for another user in a Clockify workspace. Use when adding time logs on behalf of team members with admin/manager permissions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `end` | string | No | End time in ISO 8601 format. If omitted, creates a running timer. |
| `type` | string ("REGULAR" | "BREAK") | No | Valid time entry types for Clockify. |
| `start` | string | Yes | Start time in ISO 8601 format (yyyy-MM-ddThh:mm:ssZ). |
| `tagIds` | array | No | List of tag IDs to associate with this time entry. |
| `taskId` | string | No | ID of the task this time entry is associated with. |
| `userId` | string | Yes | User identifier for whom the time entry is being created. |
| `billable` | boolean | No | Whether the time entry is billable. Defaults to project settings if not provided. |
| `projectId` | string | No | ID of the project this time entry belongs to. |
| `from-entry` | string | No | Time entry identifier to copy from. |
| `description` | string | No | Description of the work done (max 3000 characters). |
| `workspaceId` | string | Yes | Workspace identifier where the time entry will be created. |
| `customFields` | array | No | List of custom field values (max 50 items). |
| `customAttributes` | array | No | List of custom attributes (max 10 items). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Webhook

**Slug:** `CLOCKIFY_CREATE_WEBHOOK`

Tool to create a new webhook in a workspace. Use when you want to subscribe to workspace events by registering a callback URL.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `url` | string | Yes | Destination URL for webhook notifications. |
| `name` | string | Yes | Webhook name (2..30 characters). |
| `workspaceId` | string | Yes | Represents workspace identifier across the system. |
| `webhookEvent` | string ("NEW_PROJECT" | "NEW_TASK" | "NEW_CLIENT" | "NEW_TIMER_STARTED" | "TIMER_STOPPED" | "TIME_ENTRY_UPDATED" | "TIME_ENTRY_DELETED" | "TIME_ENTRY_SPLIT" | "NEW_TIME_ENTRY" | "TIME_ENTRY_RESTORED" | "NEW_TAG" | "USER_DELETED_FROM_WORKSPACE" | "USER_JOINED_WORKSPACE" | "USER_DEACTIVATED_ON_WORKSPACE" | "USER_ACTIVATED_ON_WORKSPACE" | "USER_EMAIL_CHANGED" | "USER_UPDATED" | "NEW_INVOICE" | "INVOICE_UPDATED" | "NEW_APPROVAL_REQUEST" | "APPROVAL_REQUEST_STATUS_UPDATED" | "TIME_OFF_REQUESTED" | "TIME_OFF_REQUEST_APPROVED" | "TIME_OFF_REQUEST_REJECTED" | "TIME_OFF_REQUEST_WITHDRAWN" | "BALANCE_UPDATED" | "TAG_UPDATED" | "TAG_DELETED" | "TASK_UPDATED" | "CLIENT_UPDATED" | "TASK_DELETED" | "CLIENT_DELETED" | "EXPENSE_RESTORED" | "ASSIGNMENT_CREATED" | "ASSIGNMENT_DELETED" | "ASSIGNMENT_PUBLISHED" | "ASSIGNMENT_UPDATED" | "EXPENSE_CREATED" | "EXPENSE_DELETED" | "EXPENSE_UPDATED") | Yes | Event type that triggers the webhook. |
| `triggerSource` | array | Yes | List of resource IDs that will trigger the webhook. Must match the type specified in trigger_source_type (e.g., workspace IDs for WORKSPACE_ID, user IDs for USER_ID). |
| `triggerSourceType` | string ("PROJECT_ID" | "USER_ID" | "TAG_ID" | "TASK_ID" | "WORKSPACE_ID" | "USER_GROUP_ID" | "INVOICE_ID" | "ASSIGNMENT_ID" | "EXPENSE_ID") | Yes | Type of resource that triggers events. Must be compatible with the webhook_event (e.g., WORKSPACE_ID works with most events, USER_ID works with timer/time entry events). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Workspace

**Slug:** `CLOCKIFY_CREATE_WORKSPACE`

Tool to create a new workspace in Clockify. Use when you need to set up a new workspace for time tracking and project management.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Workspace name (1-50 characters). |
| `organizationId` | string | No | Cake organization identifier. Optional parameter to associate workspace with an organization. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Client

**Slug:** `CLOCKIFY_DELETE_CLIENT`

Permanently deletes a client from a Clockify workspace. Returns the deleted client's data. Warning: This action is irreversible. Ensure the client has no associated projects or time entries.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `clientId` | string | Yes | The unique identifier of the client to delete. |
| `workspaceId` | string | Yes | The unique identifier of the workspace containing the client. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Project

**Slug:** `CLOCKIFY_DELETE_PROJECT`

Tool to delete a project from a workspace. Use when you need to permanently remove a project. Warning: This action is irreversible and may affect associated time entries and tasks.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `projectId` | string | Yes | Represents a project identifier across the system. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Shared Report

**Slug:** `CLOCKIFY_DELETE_SHARED_REPORT`

Tool to delete a shared report from a workspace by ID. Use when you need to remove a shared report that is no longer needed.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Shared report identifier to delete. |
| `workspaceId` | string | Yes | Workspace identifier containing the shared report. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Tag

**Slug:** `CLOCKIFY_DELETE_TAG`

Tool to delete a tag from a Clockify workspace. Use when you need to remove an existing tag by its ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Tag identifier to delete. |
| `workspaceId` | string | Yes | Workspace identifier containing the tag. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Task

**Slug:** `CLOCKIFY_DELETE_TASK`

Tool to delete a task from a project in Clockify. Use when removing tasks that are no longer needed or were created by mistake.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `taskId` | string | Yes | Represents a task identifier across the system. |
| `projectId` | string | Yes | Represents a project identifier across the system. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Template

**Slug:** `CLOCKIFY_DELETE_TEMPLATE`

Tool to delete a template from a Clockify workspace. Returns the deleted template's data including entries, projects, and tasks.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `templateId` | string | Yes | Template identifier to delete. |
| `workspaceId` | string | Yes | Workspace identifier containing the template. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Time Entry

**Slug:** `CLOCKIFY_DELETE_TIME_ENTRY`

Tool to delete a time entry from a workspace by ID. Use for cleanup workflows such as removing bad imports, duplicates, or cancelled entries.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Time entry identifier to delete. |
| `workspaceId` | string | Yes | Workspace identifier containing the time entry. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete User Group

**Slug:** `CLOCKIFY_DELETE_USER_GROUP`

Tool to delete a user group from a workspace. Use when you need to remove an existing user group by its ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Represents a user group identifier across the system. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete User Time Entries

**Slug:** `CLOCKIFY_DELETE_USER_TIME_ENTRIES`

Tool to delete multiple time entries for a user in a workspace. Use for bulk cleanup such as removing test data, correcting erroneous imports, or batch deleting cancelled work periods.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `userId` | string | Yes | User identifier whose time entries will be deleted. |
| `workspaceId` | string | Yes | Workspace identifier containing the time entries to delete. |
| `time-entry-ids` | array | Yes | List of time entry identifiers to delete. At least one ID must be provided. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Webhook

**Slug:** `CLOCKIFY_DELETE_WEBHOOK`

Tool to delete a webhook from a workspace. Use when you need to remove an existing webhook by its ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `webhookId` | string | Yes | Webhook identifier to delete. |
| `workspaceId` | string | Yes | Workspace identifier containing the webhook. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Duplicate Time Entry

**Slug:** `CLOCKIFY_DUPLICATE_TIME_ENTRY`

Tool to duplicate an existing time entry in a Clockify workspace. Use when creating a copy of a time entry with the same attributes (project, task, tags, description, billable status).

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Time entry identifier to duplicate. |
| `userId` | string | Yes | User identifier who owns the time entry. |
| `workspaceId` | string | Yes | Workspace identifier containing the time entry. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Filter Workspace Users

**Slug:** `CLOCKIFY_FILTER_WORKSPACE_USERS`

Tool to filter users in a workspace by advanced criteria. Use when you need a paginated, sortable list of workspace users matching multiple filters.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | Filter users by substring match in name (case-insensitive). |
| `page` | integer | No | Page number for pagination, starting from 1. |
| `email` | string | No | Filter users by substring match in email address (case-insensitive). |
| `roles` | array | No | Filter to only users having any of these roles. |
| `status` | string ("PENDING" | "ACTIVE" | "DECLINED" | "INACTIVE" | "ALL") | No | Filter users by their workspace membership status. |
| `pageSize` | integer | No | Number of users to return per page (1 to 5000). |
| `projectId` | string | No | Filter to only users who have access to this specific project ID. |
| `sortOrder` | string ("ASCENDING" | "DESCENDING") | No | Sort order direction. |
| `sortColumn` | string ("ID" | "EMAIL" | "NAME" | "NAME_LOWERCASE" | "ACCESS" | "HOURLYRATE" | "COSTRATE") | No | Column to sort results by. |
| `userGroups` | array | No | Filter to only users belonging to these user group IDs. |
| `memberships` | string ("ALL" | "NONE" | "WORKSPACE" | "PROJECT" | "USERGROUP") | No | Controls which membership details to include in response. NONE returns no memberships, ALL returns all, or filter by type. |
| `workspaceId` | string | Yes | The unique identifier of the workspace to filter users from. Use CLOCKIFY_GET_ALL_MY_WORKSPACES to retrieve available workspace IDs. |
| `includeRoles` | boolean | No | When true, includes detailed role information (e.g., WORKSPACE_ADMIN, OWNER) in the response. |
| `accountStatuses` | array | No | Filter users by account status values. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Find User's Team Managers

**Slug:** `CLOCKIFY_FIND_USER_TEAM_MANAGER`

Retrieves the list of team managers assigned to a specific user in a Clockify workspace. Team managers are users who have supervisory responsibilities over other users. Use this after obtaining valid workspace and user IDs from other actions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination, starting from 1. Default: 1. |
| `userId` | string | Yes | The unique identifier (ID) of the user whose managers you want to find. Obtain this from the 'Find All Users On Workspace' action. |
| `page-size` | integer | No | Number of managers to return per page (1-5000). Default: 50. |
| `sort-order` | string ("ASCENDING" | "DESCENDING") | No | Sort direction. ASCENDING for A-Z/low-to-high, DESCENDING for Z-A/high-to-low. Default: ASCENDING. |
| `sort-column` | string ("ID" | "EMAIL" | "NAME" | "NAME_LOWERCASE" | "ACCESS" | "HOURLYRATE" | "COSTRATE") | No | Column to sort the managers by. Options: ID (manager ID), EMAIL (email address), NAME (full name), NAME_LOWERCASE (case-insensitive name), ACCESS (access level), HOURLYRATE (hourly rate), COSTRATE (cost rate). Default: ID. |
| `workspaceId` | string | Yes | The unique identifier (ID) of the workspace. Obtain this from the 'Get All My Workspaces' action. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Generate Detailed Report

**Slug:** `CLOCKIFY_GENERATE_DETAILED_REPORT`

Tool to generate a detailed time entry report with filtering and pagination. Use when you need comprehensive time tracking data with project, client, user, and tag breakdowns for reporting or analysis.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `tags` | object | No | Filter time entries by tag IDs and whether they are contained in the time entry. |
| `users` | object | No | Filter time entries by user IDs, contains operator, and status. |
| `clients` | object | No | Filter time entries by client IDs, contains operator, and status. |
| `projects` | object | No | Filter time entries by project IDs, contains operator, and status. |
| `exportType` | string ("JSON" | "CSV" | "XLSX" | "PDF") | No | Export format for the report. Defaults to JSON. |
| `workspaceId` | string | Yes | Workspace identifier to generate the report for. Use CLOCKIFY_GET_ALL_MY_WORKSPACES to get workspace IDs. |
| `dateRangeEnd` | string | Yes | End date/time in ISO 8601 format (e.g., '2024-01-31T23:59:59.000Z'). |
| `dateRangeStart` | string | Yes | Start date/time in ISO 8601 format (e.g., '2024-01-01T00:00:00.000Z'). |
| `detailedFilter` | object | Yes | Pagination settings for the report. Required for detailed reports. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Generate Expense Report

**Slug:** `CLOCKIFY_GENERATE_EXPENSE_REPORT`

Tool to generate a detailed expense report for a Clockify workspace. Use when you need to retrieve and analyze expense data within a specific date range for reporting, invoicing, or financial analysis.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `exportType` | string ("JSON" | "CSV" | "XLSX" | "PDF") | No | Valid export formats for expense reports. |
| `workspaceId` | string | Yes | Workspace identifier (UUID) to generate the expense report for. |
| `dateRangeEnd` | string | Yes | End date in ISO 8601 format with milliseconds (e.g., '2026-02-13T23:59:59.999Z'). Defines the end of the expense reporting period. |
| `dateRangeStart` | string | Yes | Start date in ISO 8601 format with milliseconds (e.g., '2026-01-14T00:00:00.000Z'). Defines the beginning of the expense reporting period. |
| `detailedFilter` | object | No | Pagination configuration for detailed expense report. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Generate New Webhook Token

**Slug:** `CLOCKIFY_GENERATE_NEW_WEBHOOK_TOKEN`

Tool to generate a new webhook token. Use after confirming workspace and webhook IDs.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `webhook_id` | string | Yes | Webhook identifier across the system. |
| `workspace_id` | string | Yes | Workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Generate Summary Report

**Slug:** `CLOCKIFY_GENERATE_SUMMARY_REPORT`

Tool to generate a summary report for time entries in a Clockify workspace. Use when you need aggregated time tracking data grouped by projects, users, clients, or other criteria for high-level analysis and reporting.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `rounding` | boolean | No | Whether to round time values in the report. If true, time entries will be rounded according to workspace settings. |
| `exportType` | string ("JSON" | "CSV" | "XLSX" | "PDF") | No | Valid export formats for summary reports. |
| `workspaceId` | string | Yes | Workspace identifier (UUID) to generate the summary report for. |
| `dateRangeEnd` | string | Yes | End date in ISO format with milliseconds (e.g., '2024-12-31T23:59:59.999'). Defines the end of the reporting period. |
| `summaryFilter` | object | Yes | Filter object specifying how to group the summary data (e.g., by project, user, client). |
| `dateRangeStart` | string | Yes | Start date in ISO format with milliseconds (e.g., '2024-01-01T00:00:00.000'). Defines the beginning of the reporting period. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Generate Weekly Report

**Slug:** `CLOCKIFY_GENERATE_WEEKLY_REPORT`

Tool to generate a weekly time entry report for a workspace with grouped data. Use when you need detailed weekly breakdowns of time entries organized by user, project, task, or other dimensions.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `workspaceId` | string | Yes | The workspace ID to generate the report for. |
| `dateRangeEnd` | string | Yes | End date in ISO 8601 format (e.g., 2026-02-16T23:59:59.999Z). |
| `weeklyFilter` | object | Yes | Filter object with group and subgroup properties for organizing the report. |
| `dateRangeStart` | string | Yes | Start date in ISO 8601 format (e.g., 2026-02-10T00:00:00.000Z). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get All Addon Webhooks

**Slug:** `CLOCKIFY_GET_ALL_ADDON_WEBHOOKS`

Tool to list all webhooks for an addon in a workspace. Use after confirming workspace and addon IDs.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `addonId` | string | Yes | Represents addon identifier across the system. |
| `workspaceId` | string | Yes | Represents workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get All My Workspaces

**Slug:** `CLOCKIFY_GET_ALL_MY_WORKSPACES`

Tool to list all workspaces the user belongs to. Use when you need an overview of accessible workspaces after authentication. Verify the correct workspace ID from the returned list before using it in subsequent operations — wrong workspace IDs misroute all entries. Each workspace object may include settings such as forceTasks; when enabled, time entry creation requires a valid taskId or returns HTTP 400 (code 501).

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `roles` | array | No | Optional list of roles to filter workspaces by (e.g., ['WORKSPACE_ADMIN','OWNER']). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get All Webhooks

**Slug:** `CLOCKIFY_GET_ALL_WEBHOOKS`

Tool to list all webhooks in a workspace. Use when you need to retrieve defined webhooks after confirming the workspace ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `workspaceId` | string | Yes | Workspace identifier (UUID) to list webhooks for. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Client By ID

**Slug:** `CLOCKIFY_GET_CLIENT_BY_ID`

Retrieves detailed information about a specific client in a Clockify workspace. Returns client details including name, contact information (email, address), billing currency, and archived status. Use 'Get All My Workspaces' to obtain workspace_id and 'Get Clients' to obtain client_id before calling this action.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `clientId` | string | Yes | The unique identifier of the client to retrieve. Can be obtained from the 'Get Clients' action. |
| `workspaceId` | string | Yes | The unique identifier of the workspace containing the client. Can be obtained from the 'Get All My Workspaces' action. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Clients

**Slug:** `CLOCKIFY_GET_CLIENTS`

Tool to list clients in a workspace. Use after obtaining a workspace ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | Filter clients by name (case-insensitive partial match). Returns clients whose name contains the specified string. |
| `page` | integer | No | Page number for pagination (1-based). Defaults to 1 if not specified. |
| `page-size` | integer | No | Number of clients to return per page. Defaults to 50 if not specified. |
| `workspaceId` | string | Yes | The ID of the workspace to retrieve clients from. Use CLOCKIFY_GET_ALL_MY_WORKSPACES to get workspace IDs. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Created Entities

**Slug:** `CLOCKIFY_GET_CREATED_ENTITIES`

Tool to retrieve created entities within a workspace (Experimental). Use when you need to track incremental changes or newly created time entries, projects, clients, or other entity types.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `type` | string ("TIME_ENTRY" | "PROJECT" | "CLIENT" | "TASK" | "USER" | "TAG" | "CUSTOM_FIELD") | Yes | Type of entity to retrieve. Specifies which kind of created entities to return (e.g., TIME_ENTRY, PROJECT, CLIENT). |
| `workspaceId` | string | Yes | Workspace identifier (UUID) to retrieve created entities from. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Currently Logged In User Info

**Slug:** `CLOCKIFY_GET_CURRENTLY_LOGGED_IN_USER_INFO`

Tool to retrieve info about the authenticated user. Use when verifying credentials and needing current user context after authentication.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Deleted Entities

**Slug:** `CLOCKIFY_GET_DELETED_ENTITIES`

Tool to retrieve information about entities deleted within a date range (Experimental API). Use when you need to track incremental changes or identify deleted records for synchronization purposes.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `type` | string ("TIME_ENTRY" | "PROJECT" | "TASK" | "CLIENT" | "TAG" | "USER") | Yes | Type of entity to retrieve deleted records for. Specify which entity type you want to track deletions for (e.g., TIME_ENTRY for deleted time entries, PROJECT for deleted projects). |
| `endDate` | string | No | Filter deleted entities up to this date/time (ISO 8601 format, e.g., '2024-01-31T23:59:59Z'). If not specified, retrieves up to current time. |
| `startDate` | string | No | Filter deleted entities from this date/time onwards (ISO 8601 format, e.g., '2024-01-01T00:00:00Z'). If not specified, retrieves all deletions. |
| `workspaceId` | string | Yes | The ID of the workspace to retrieve deleted entities from. Use CLOCKIFY_GET_ALL_MY_WORKSPACES to get workspace IDs. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Holidays

**Slug:** `CLOCKIFY_GET_HOLIDAYS`

Tool to retrieve all holidays for a workspace. Use when you need to list or filter workspace holidays after confirming the workspace ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `end` | string | No | Optional end date in ISO 8601 format (YYYY-MM-DD) to filter holidays up to. |
| `start` | string | No | Optional start date in ISO 8601 format (YYYY-MM-DD) to filter holidays from. |
| `workspaceId` | string | Yes | Workspace identifier to retrieve holidays from. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Holidays In Period

**Slug:** `CLOCKIFY_GET_HOLIDAYS_IN_PERIOD`

Tool to retrieve holidays in a specific period. Use when you need holidays assigned to a user between two dates after confirming the workspace ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `end` | string | Yes | End datetime in ISO 8601 format (e.g., '2022-12-31T23:59:59.999Z') to filter holidays up to. Must be after start. |
| `start` | string | Yes | Start datetime in ISO 8601 format (e.g., '2022-12-01T00:00:00.000Z') to filter holidays from. |
| `assigned-to` | string | Yes | User ID to filter holidays assigned to. |
| `workspaceId` | string | Yes | Workspace identifier to retrieve holidays from. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get In Progress Time Entries

**Slug:** `CLOCKIFY_GET_IN_PROGRESS_TIME_ENTRIES`

Tool to retrieve all currently running time entries in a workspace. Use when you need to check which timers are active or see who is currently tracking time.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `workspaceId` | string | Yes | Workspace identifier (UUID) to retrieve in-progress time entries from. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get member's profile

**Slug:** `CLOCKIFY_GET_MEMBER_PROFILE`

Tool to get a member's profile in a workspace. Use when you need detailed profile info after identifying the workspace and user.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `userId` | string | Yes | Identifier of the user whose profile is retrieved |
| `workspaceId` | string | Yes | Identifier of the workspace to which the user belongs |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Project

**Slug:** `CLOCKIFY_GET_PROJECT`

Tool to retrieve detailed information about a specific project by ID. Use when you need to get project details such as name, billable status, budget estimates, rates, and memberships.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `hydrated` | boolean | No | If set to true, results will contain additional information about the project. |
| `projectId` | string | Yes | Represents a project identifier across the system. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. Can be obtained from 'Get All My Workspaces' action. |
| `expense-date` | string | No | If provided, you will get expenses dated before the provided value in yyyy-MM-dd format. |
| `expense-limit` | integer | No | Represents the maximum number of expenses to fetch. |
| `custom-field-entity-type` | string | No | If provided, you'll get a filtered list of custom fields that matches the provided string with the custom field entity type. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Projects

**Slug:** `CLOCKIFY_GET_PROJECTS`

Tool to list projects in a workspace with filtering and pagination. Use after obtaining a workspace ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | Filter projects by name (case-insensitive partial match). Returns projects whose name contains the specified string. |
| `page` | integer | No | Page number for pagination (1-based). Defaults to 1 if not specified. |
| `users` | string | No | Filter projects by user IDs (comma-separated). Returns projects where specified users are members. |
| `clients` | string | No | Filter projects by client IDs (comma-separated). Returns projects associated with specified clients. |
| `archived` | boolean | No | Filter by archived status. If true, returns only archived projects; if false, returns only active projects. |
| `billable` | boolean | No | Filter by billable status. If true, returns only billable projects; if false, returns only non-billable projects. |
| `hydrated` | boolean | No | If true, returns additional related data in the response (e.g., full client objects instead of just IDs). |
| `page-size` | integer | No | Number of projects to return per page. Defaults to 50 if not specified. |
| `sort-order` | string | No | Sort order. Possible values: ASCENDING, DESCENDING. |
| `is-template` | boolean | No | Filter by template status. If true, returns only template projects; if false, returns only regular projects. |
| `sort-column` | string | No | Column to sort results by. Possible values: NAME, CLIENT_NAME, DURATION. |
| `user-status` | string | No | Filter by user membership status. Possible values: ACTIVE, INACTIVE. |
| `workspaceId` | string | Yes | The ID of the workspace to retrieve projects from. Use CLOCKIFY_GET_ALL_MY_WORKSPACES to get workspace IDs. |
| `client-status` | string | No | Filter by client status. Possible values: ACTIVE, ARCHIVED. |
| `contains-users` | boolean | No | If true, returns only projects that have users assigned. If false, returns only projects without users. |
| `contains-client` | boolean | No | If true, returns only projects that have a client assigned. If false, returns only projects without a client. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Shared Report

**Slug:** `CLOCKIFY_GET_SHARED_REPORT`

Tool to retrieve a shared report by ID from Clockify. Returns report data including totals, charts, groupings, and filter configuration. Use when you need to access and analyze shared report data. Note: This endpoint uses the Reports API domain (reports.api.clockify.me).

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the shared report to retrieve. Example: 698f300e5c0941776aad095e |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Shared Reports

**Slug:** `CLOCKIFY_GET_SHARED_REPORTS`

Tool to retrieve all shared reports in a workspace. Use when you need to view reports that have been shared within the workspace.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `workspaceId` | string | Yes | The ID of the workspace to retrieve shared reports from. Use CLOCKIFY_GET_ALL_MY_WORKSPACES to get workspace IDs. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Tag By ID

**Slug:** `CLOCKIFY_GET_TAG`

Tool to retrieve detailed information about a specific tag by ID in a Clockify workspace. Use when you need to get tag details including name, workspace ID, and archived status.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Represents a tag identifier across the system. The unique ID of the tag to retrieve. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. Get this from CLOCKIFY_GET_ALL_MY_WORKSPACES. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Tags

**Slug:** `CLOCKIFY_GET_TAGS`

Tool to find and list tags in a workspace. Use when you need to view all tags or filter tags by name or archived status.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | Filter tags by name (case-sensitive partial match). Returns tags whose name contains the specified string. |
| `page` | integer | No | Page number for pagination (1-based). Defaults to 1 if not specified. |
| `archived` | boolean | No | Filter tags by archived status. If true, returns only archived tags. If false, returns only active tags. |
| `page-size` | integer | No | Number of tags to return per page. Defaults to 50 if not specified. |
| `workspaceId` | string | Yes | ID of the workspace to retrieve tags from. Use CLOCKIFY_GET_ALL_MY_WORKSPACES to get workspace IDs. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Task

**Slug:** `CLOCKIFY_GET_TASK`

Retrieves detailed information about a specific task in a Clockify project. Returns task details including name, assignees, estimates, billable status, and rates. Use this to inspect or verify task information within a project.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `taskId` | string | Yes | The unique identifier of the task to retrieve. |
| `projectId` | string | Yes | The unique identifier of the project containing the task. |
| `workspaceId` | string | Yes | The unique identifier of the workspace containing the task. Get this from CLOCKIFY_GET_ALL_MY_WORKSPACES. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Tasks

**Slug:** `CLOCKIFY_GET_TASKS`

Tool to find all tasks on a specific project in a workspace. Use when you need to list, search, or filter tasks for project management.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | Filter tasks by name (case-insensitive partial match). Returns tasks whose name contains the specified string. |
| `page` | integer | No | Page number for pagination (1-based). Defaults to 1 if not specified. |
| `is-active` | boolean | No | Filter tasks by active status. Set to true to get only active tasks, false for inactive tasks. |
| `page-size` | integer | No | Number of tasks to return per page. Defaults to 50 if not specified. |
| `projectId` | string | Yes | The ID of the project to retrieve tasks from. |
| `sort-order` | string ("ASCENDING" | "DESCENDING") | No | Sort order for results. |
| `sort-column` | string | No | Column to sort results by (e.g., 'NAME', 'STATUS'). |
| `workspaceId` | string | Yes | The ID of the workspace to retrieve tasks from. Use CLOCKIFY_GET_ALL_MY_WORKSPACES to get workspace IDs. |
| `strict-name-search` | boolean | No | Whether to use strict name matching. If true, only exact matches are returned. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Template By ID On Workspace

**Slug:** `CLOCKIFY_GET_TEMPLATE_BY_ID_ON_WORKSPACE`

Tool to retrieve a specific template by ID from a Clockify workspace. Use when you need to fetch template details including projects and tasks, optionally hydrated or cleansed. Note: This endpoint is deprecated in the API but remains functional.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `cleansed` | boolean | No | If set to true will filter out inactive template projects and tasks. |
| `hydrated` | boolean | No | If set to true will return hydrated template projects and tasks. |
| `templateId` | string | Yes | Represents a template identifier across the system. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. Can be obtained from the 'Get All My Workspaces' action. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Templates On Workspace

**Slug:** `CLOCKIFY_GET_TEMPLATES_ON_WORKSPACE`

Tool to list all templates in a workspace. Use when you need to retrieve available templates for creating projects or time entries.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | Filter templates by name (partial match). Returns templates that contain the provided string in their name. |
| `page` | integer | No | Page number for pagination (1-based). Default is 1. |
| `cleansed` | boolean | No | If true, filters out inactive template projects and tasks. Default is false. |
| `hydrated` | boolean | No | If true, returns hydrated template projects and tasks with full object details. Default is false. |
| `page-size` | integer | No | Number of templates to return per page. Default is 50. |
| `workspaceId` | string | Yes | Workspace identifier to retrieve templates from. Use CLOCKIFY_GET_ALL_MY_WORKSPACES to get workspace IDs. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Time Entries

**Slug:** `CLOCKIFY_GET_TIME_ENTRIES`

Tool to retrieve historical time entries for a user in a workspace with filters. Use when you need to audit, summarize, or analyze time logs for reporting or invoicing.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `end` | string | No | Filter time entries by end date/time (ISO 8601 format, e.g., '2024-01-31T23:59:59Z'). |
| `page` | integer | No | Page number for pagination (1-based). |
| `tags` | string | No | Filter time entries by comma-separated tag IDs. |
| `task` | string | No | Filter time entries by task ID. |
| `start` | string | No | Filter time entries by start date/time (ISO 8601 format, e.g., '2024-01-01T00:00:00Z'). |
| `userId` | string | Yes | User identifier (UUID) to retrieve time entries for. |
| `project` | string | No | Filter time entries by project ID. |
| `hydrated` | boolean | No | If true, project, task, and tags will be returned as full objects instead of just IDs. |
| `page-size` | integer | No | Number of time entries per page (default: 50). |
| `description` | string | No | Filter time entries by description text (partial match supported). |
| `in-progress` | boolean | No | If true, returns only the currently running time entry (ignores other filters). |
| `workspaceId` | string | Yes | Workspace identifier (UUID) to retrieve time entries from. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Time Entry

**Slug:** `CLOCKIFY_GET_TIME_ENTRY`

Tool to retrieve a specific time entry by ID from a workspace. Use when you need to inspect details of a particular time entry for auditing, reporting, or further processing.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Time entry identifier to retrieve. |
| `hydrated` | boolean | No | If true, includes additional information such as full project, task, and tag objects instead of just IDs. |
| `workspaceId` | string | Yes | Workspace identifier containing the time entry. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Updated Entities

**Slug:** `CLOCKIFY_GET_UPDATED_ENTITIES`

Tool to retrieve entities that have been updated in a workspace (Experimental). Use when tracking incremental changes to time entries, expenses, custom fields, or other entity types for synchronization or audit purposes.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `type` | string ("TIME_ENTRY" | "TIME_ENTRY_CUSTOM_FIELD_VALUE" | "CUSTOM_FIELDS" | "TIME_ENTRY_RATE") | Yes | The entity type to track updates for. Must be one of: TIME_ENTRY, TIME_ENTRY_CUSTOM_FIELD_VALUE, CUSTOM_FIELDS, TIME_ENTRY_RATE. |
| `workspaceId` | string | Yes | The ID of the workspace to query for updated entities. Use CLOCKIFY_GET_ALL_MY_WORKSPACES to get workspace IDs. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get User Groups

**Slug:** `CLOCKIFY_GET_USER_GROUPS`

Tool to find all user groups in a workspace. Use when you need to retrieve all groups that organize users within a specific workspace.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Webhook By ID

**Slug:** `CLOCKIFY_GET_WEBHOOK_BY_ID`

Retrieves detailed information about a specific webhook in a Clockify workspace. Returns the webhook's name, URL, event type, trigger source configuration, auth token, and enabled status. Use this to inspect or verify webhook settings.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `webhookId` | string | Yes | The unique ID of the webhook to retrieve. Get this from CLOCKIFY_GET_ALL_WEBHOOKS. |
| `workspaceId` | string | Yes | The unique ID of the workspace containing the webhook. Get this from CLOCKIFY_GET_ALL_MY_WORKSPACES. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Webhook Logs

**Slug:** `CLOCKIFY_GET_WEBHOOK_LOGS`

Tool to retrieve webhook logs for a specific webhook. Use when you need to inspect webhook delivery history, debug failed webhook calls, or monitor webhook activity.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `to` | string | No | Represents date and time in yyyy-MM-ddThh:mm:ssZ format. If provided, results will include logs which occurred before this value. |
| `from` | string | No | Represents date and time in yyyy-MM-ddThh:mm:ssZ format. If provided, results will include logs which occurred after this value. |
| `page` | integer | No | Page number. |
| `size` | integer | No | Page size. |
| `status` | string ("ALL" | "SUCCEEDED" | "FAILED") | No | Filters logs by status. |
| `webhookId` | string | Yes | Represents a webhook identifier across the system. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |
| `sortByNewest` | boolean | No | If set to true, logs will be sorted with most recent first. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Workspace Info

**Slug:** `CLOCKIFY_GET_WORKSPACE_INFO`

Retrieves detailed information about a specific Clockify workspace. Use this tool to get workspace configuration, settings, memberships, and features. Requires a workspace ID which can be obtained from 'Get All My Workspaces' action. Returns workspace details including: - Name and ID - Cost rates and hourly rates - Subscription type and enabled features - Membership information - Workspace settings (time tracking mode, permissions, etc.)

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `workspaceId` | string | Yes | The unique identifier of the workspace to retrieve. Can be obtained from 'Get All My Workspaces' action. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Assignments

**Slug:** `CLOCKIFY_LIST_ASSIGNMENTS`

Tool to retrieve all scheduling assignments in a workspace. Use when you need to view team member assignments to projects within a specific date range.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `end` | string | No | End date for the assignment query in ISO 8601 format (e.g., '2026-02-28T23:59:59Z'). Optional parameter to limit the date range. |
| `start` | string | Yes | Start date for the assignment query in ISO 8601 format (e.g., '2026-02-01T00:00:00Z'). Required parameter to filter assignments. |
| `workspaceId` | string | Yes | ID of the workspace to retrieve assignments from. Use CLOCKIFY_GET_ALL_MY_WORKSPACES to get workspace IDs. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Remove User From Group

**Slug:** `CLOCKIFY_REMOVE_USER_FROM_GROUP`

Tool to remove a user from a group in Clockify. Returns the updated user group details after removal.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `userId` | string | Yes | Represents a user identifier across the system. |
| `userGroupId` | string | Yes | Represents a user group identifier across the system. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Stop User Timer

**Slug:** `CLOCKIFY_STOP_USER_TIMER`

Tool to stop a currently running timer for a user in a workspace. Use when ending an active time tracking session by providing the end timestamp.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `end` | string | Yes | The timestamp when the timer should stop, in ISO 8601 format (e.g., '2026-02-13T14:30:00Z'). |
| `userId` | string | Yes | User identifier whose timer should be stopped. |
| `workspaceId` | string | Yes | Workspace identifier where the timer is running. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Client

**Slug:** `CLOCKIFY_UPDATE_CLIENT`

Tool to update an existing client in a Clockify workspace. Use when you need to modify client details such as name, email, address, or archived status.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Represents a client identifier across the system. |
| `name` | string | No | Represents a client name (0..100 characters). |
| `note` | string | No | Represents additional notes for the client (0..3000 characters). |
| `email` | string | No | Represents a client email. |
| `address` | string | No | Represents a client's address (0..3000 characters). |
| `archived` | boolean | No | Indicates if client will be archived or not. |
| `ccEmails` | array | No | List of CC email addresses (maximum 3). |
| `currencyId` | string | No | Represents a currency identifier across the system. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |
| `archiveProjects` | boolean | No | If true, archive all projects associated with this client. |
| `markTasksAsDone` | boolean | No | If true, mark all tasks associated with this client as done. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Project

**Slug:** `CLOCKIFY_UPDATE_PROJECT`

Tool to update an existing project in a Clockify workspace. Use when modifying project details like name, color, billable status, or client associations.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | Project name (2-250 characters). |
| `note` | string | No | Project note or description (up to 16384 characters). |
| `color` | string | No | Project color in hexadecimal RGB format (e.g., #FF0000 for red). |
| `archived` | boolean | No | Whether the project is archived. |
| `billable` | boolean | No | Whether the project is billable. |
| `clientId` | string | No | Client identifier to associate with the project. |
| `costRate` | object | No | Cost rate object for the project. |
| `isPublic` | boolean | No | Whether the project is public. |
| `projectId` | string | Yes | Project identifier to update. |
| `hourlyRate` | object | No | Hourly rate object for the project. |
| `workspaceId` | string | Yes | Workspace identifier where the project exists. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Project Memberships

**Slug:** `CLOCKIFY_UPDATE_PROJECT_MEMBERSHIPS`

Tool to update project memberships in Clockify. Use when you need to add users to a project or modify their rates.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `projectId` | string | Yes | Project identifier whose memberships will be updated. Use CLOCKIFY_GET_PROJECTS or similar to get project IDs. |
| `userGroups` | object | No | Filter for user groups to include or exclude in memberships. |
| `memberships` | array | Yes | List of user memberships to set for the project. Each membership requires a userId and optional hourly/cost rates. |
| `workspaceId` | string | Yes | Workspace identifier where the project resides. Use CLOCKIFY_GET_ALL_MY_WORKSPACES to get workspace IDs. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Project User Hourly Rate

**Slug:** `CLOCKIFY_UPDATE_PROJECT_USER_HOURLY_RATE`

Tool to update a project user's billable rate. Use when you need to set or change the hourly rate for a specific user on a project.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `since` | string | No | Represents a date and time in yyyy-MM-ddThh:mm:ssZ format. |
| `amount` | integer | Yes | Represents an amount as integer (in smallest currency unit, e.g., cents). |
| `userId` | string | Yes | Represents a user identifier across the system. |
| `projectId` | string | Yes | Represents a project identifier across the system. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Shared Report

**Slug:** `CLOCKIFY_UPDATE_SHARED_REPORT`

Tool to update an existing shared report in Clockify. Use when modifying report name, visibility, date settings, or filter configuration.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Identifier of the shared report to update. |
| `name` | string | Yes | Name of the shared report. |
| `type` | string ("SUMMARY" | "DETAILED" | "WEEKLY") | Yes | Type of report (SUMMARY, DETAILED, or WEEKLY). |
| `filter` | object | Yes | Filter configuration object containing date range settings and type-specific filters. |
| `isPublic` | boolean | Yes | Whether the report is publicly accessible. |
| `fixedDate` | boolean | Yes | Whether to use fixed dates for the report. If false, the report uses relative dates. |
| `workspaceId` | string | Yes | Workspace identifier where the shared report exists. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Tag

**Slug:** `CLOCKIFY_UPDATE_TAG`

Tool to update a tag in a Clockify workspace. Use when you need to rename a tag or archive/unarchive it.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Represents a tag identifier across the system. |
| `name` | string | No | Represents a tag name (0-100 characters). |
| `archived` | boolean | No | Indicates whether a tag will be archived or not. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Task

**Slug:** `CLOCKIFY_UPDATE_TASK`

Tool to update an existing task on a project in Clockify. Use when modifying task details like name, assignees, status, estimates, or billing settings.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Represents task name (1..1000 characters). |
| `status` | string ("ACTIVE" | "DONE" | "ALL") | No | Represents task status. |
| `taskId` | string | Yes | Represents a task identifier across the system. |
| `billable` | boolean | No | Indicates whether a task is billable or not. |
| `estimate` | string | No | Represents a task duration estimate in ISO 8601 format (e.g., PT1H30M). |
| `projectId` | string | Yes | Represents a project identifier across the system. |
| `assigneeId` | string | No | Represents assignee id for the task. |
| `assigneeIds` | array | No | Represents list of assignee ids for the task. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |
| `userGroupIds` | array | No | Represents list of user group ids for the task. |
| `budgetEstimate` | integer | No | Represents a task budget estimate as integer. |
| `contains-assignee` | boolean | No | Flag to set whether task will have assignee or none. |
| `membership-status` | string ("PENDING" | "ACTIVE" | "DECLINED" | "INACTIVE" | "ALL") | No | Represents a membership status. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Template

**Slug:** `CLOCKIFY_UPDATE_TEMPLATE`

Tool to update a template in a Clockify workspace. Use when you need to modify a template's name. Note: This endpoint is deprecated in API v1.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | Represents a template name. |
| `templateId` | string | Yes | Represents a template identifier across the system. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Time Entries

**Slug:** `CLOCKIFY_UPDATE_TIME_ENTRIES`

Tool to bulk update multiple time entries in a Clockify workspace. Use when modifying multiple time logs simultaneously with start/end times, descriptions, billable status, or project/task associations.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `userId` | string | Yes | User identifier who owns the time entries. |
| `hydrated` | boolean | No | If set to true, results will contain additional information about the time entries. |
| `workspaceId` | string | Yes | Workspace identifier containing the time entries. |
| `time_entries` | array | Yes | List of time entries to update (minimum 1 entry required). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Time Entry

**Slug:** `CLOCKIFY_UPDATE_TIME_ENTRY`

Tool to update an existing time entry in a Clockify workspace. Use when modifying time logs including start/end times, description, billable status, or project/task associations.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Time entry identifier to update. |
| `end` | string | No | End time in ISO 8601 format (yyyy-MM-ddTHH:mm:ssZ). If omitted, timer will be running. |
| `type` | string ("REGULAR" | "BREAK") | No | Type of time entry. |
| `start` | string | Yes | Start time in ISO 8601 format (yyyy-MM-ddTHH:mm:ssZ). This is required. |
| `tagIds` | array | No | List of tag IDs to associate with this time entry. |
| `taskId` | string | No | ID of the task this time entry is associated with. |
| `billable` | boolean | No | Whether the time entry is billable. |
| `projectId` | string | No | ID of the project this time entry belongs to. |
| `description` | string | No | Description of the work done (0-3000 characters). |
| `workspaceId` | string | Yes | Workspace identifier containing the time entry. |
| `customFields` | array | No | List of custom field values for this time entry (max 50 items). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update User Group

**Slug:** `CLOCKIFY_UPDATE_USER_GROUP`

Tool to update an existing user group in a workspace. Use when you need to modify the name of a user group.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Represents a user group identifier across the system. |
| `name` | string | Yes | Represents a user group name (0..100 characters). |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update User Hourly Rate

**Slug:** `CLOCKIFY_UPDATE_USER_HOURLY_RATE`

Tool to update a user's hourly rate in a Clockify workspace. Use when you need to set or change the billable hourly rate for a specific user.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `since` | string | No | Represents a date and time in yyyy-MM-ddThh:mm:ssZ format. |
| `amount` | integer | Yes | Represents an hourly rate amount as integer (in smallest currency unit, e.g., cents). |
| `userId` | string | Yes | Represents a user identifier across the system. |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Webhook

**Slug:** `CLOCKIFY_UPDATE_WEBHOOK`

Tool to update a webhook in a workspace. Use when you need to modify an existing webhook's configuration such as its name, URL, event type, or trigger sources.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `url` | string | Yes | Represents the webhook URL endpoint. |
| `name` | string | Yes | Represents webhook name (2-30 characters). |
| `webhookId` | string | Yes | Represents webhook identifier across the system. |
| `workspaceId` | string | Yes | Represents workspace identifier across the system. |
| `webhookEvent` | string ("NEW_PROJECT" | "NEW_TASK" | "NEW_CLIENT" | "NEW_TIMER_STARTED" | "TIMER_STOPPED" | "TIME_ENTRY_UPDATED" | "TIME_ENTRY_DELETED" | "TIME_ENTRY_SPLIT" | "NEW_TIME_ENTRY" | "TIME_ENTRY_RESTORED" | "NEW_TAG" | "USER_DELETED_FROM_WORKSPACE" | "USER_JOINED_WORKSPACE" | "USER_DEACTIVATED_ON_WORKSPACE" | "USER_ACTIVATED_ON_WORKSPACE" | "USER_EMAIL_CHANGED" | "USER_UPDATED" | "NEW_INVOICE" | "INVOICE_UPDATED" | "NEW_APPROVAL_REQUEST" | "APPROVAL_REQUEST_STATUS_UPDATED" | "TIME_OFF_REQUESTED" | "TIME_OFF_REQUEST_UPDATED" | "TIME_OFF_REQUEST_APPROVED" | "TIME_OFF_REQUEST_REJECTED" | "TIME_OFF_REQUEST_WITHDRAWN" | "BALANCE_UPDATED" | "TAG_UPDATED" | "TAG_DELETED" | "TASK_UPDATED" | "CLIENT_UPDATED" | "TASK_DELETED" | "CLIENT_DELETED" | "EXPENSE_RESTORED" | "ASSIGNMENT_CREATED" | "ASSIGNMENT_DELETED" | "ASSIGNMENT_PUBLISHED" | "ASSIGNMENT_UPDATED" | "EXPENSE_CREATED" | "EXPENSE_DELETED" | "EXPENSE_UPDATED" | "PROJECT_UPDATED" | "PROJECT_DELETED" | "USER_GROUP_CREATED" | "USER_GROUP_UPDATED" | "USER_GROUP_DELETED" | "USERS_INVITED_TO_WORKSPACE" | "LIMITED_USERS_ADDED_TO_WORKSPACE" | "COST_RATE_UPDATED" | "BILLABLE_RATE_UPDATED") | Yes | Represents a webhook event type. |
| `triggerSource` | array | Yes | Represents a list of trigger sources. |
| `triggerSourceType` | string ("PROJECT_ID" | "USER_ID" | "TAG_ID" | "TASK_ID" | "WORKSPACE_ID" | "ASSIGNMENT_ID" | "EXPENSE_ID") | Yes | Represents a webhook event trigger source type. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Workspace Hourly Rate

**Slug:** `CLOCKIFY_UPDATE_WORKSPACE_HOURLY_RATE`

Tool to update the workspace billable hourly rate. Use when you need to set or modify the default hourly billing rate for a workspace.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `since` | string | No | Represents a date and time in yyyy-MM-ddThh:mm:ssZ format. When provided, the rate applies from this date onwards. |
| `amount` | integer | Yes | Represents an amount as integer in smallest currency unit (e.g., cents for USD). Must be non-negative. |
| `currency` | string | No | Represents a currency code (e.g., USD, EUR). |
| `workspaceId` | string | Yes | Represents a workspace identifier across the system. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
