View as Markdown
Clockify icon

Clockify ACTION

Get Time Entry Report

Get a time entry report. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Clockify account once, then configure and run Get Time Entry Report from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "clockify-get-time-entry-report",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    clockify: { authProvisionId: "apn_xxxxxxx" },
    workspaceId: "Workspace",
    dateRangeStart: "Date Range Start",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Get Time Entry Report inputs
Property Type Description
workspaceId Workspace string
Identifier of a workspace
Required Dynamic
dateRangeStart Date Range Start string
The start date of the date range. Format: YYYY-MM-DDTHH:MM:SS.ssssssZ
Required
dateRangeEnd Date Range End string
The end date of the date range. Format: YYYY-MM-DDTHH:MM:SS.ssssssZ
Required
clientIds Client IDs string[]
Array of client identifiers
Optional Dynamic
projectId Project string
Identifier of a project
Optional Dynamic
taskIds Task IDs string[]
Array of task identifiers
Optional Dynamic
tagIds Tags string[]
Array of tag identifiers
Optional Dynamic
userIds Members string[]
Array of member/user identifiers
Optional Dynamic

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
clockify-get-time-entry-report
Version
0.0.3
App
Clockify
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes