With the Clockify API, you can build applications that:
Here are some examples of what you can build with the Clockify API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clockify: {
type: "app",
app: "clockify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.clockify.me/api/v1/user`,
headers: {
"X-Api-Key": `${this.clockify.$auth.api_key}`,
"content-type": `application/json`,
},
})
},
})
Clockify uses API keys for authentication. When you connect your Clockify account, Pipedream securely stores the keys so you can easily authenticate to Clockify APIs in both code and no-code steps.
All your requests should include "X-Api-Key" in request header, containing your API key.