Everhour is one of the best time tracking tools for teams. See who’s tracking time, who’s overworked and who can handle more. Keep track of all your project budgets, schedule threshold alerts, use forward resource planning. Build any kind of reports and send professional-looking invoices.
Go to siteEverhour provides an API that gives developers access to theEverhour data. This allows developers to build integrations withEverhour that can display data in new ways, or automate tasks such as tracking time or creating projects.
Some examples of what can be built using the Everhour API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
everhour: {
type: "app",
app: "everhour",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.everhour.com/users/me`,
headers: {
"Content-Type": `application/json`,
"X-Api-Key": `${this.everhour.$auth.api_token}`,
},
})
},
})
Everhour uses API keys for authentication. When you connect your Everhour account, Pipedream securely stores the keys so you can easily authenticate to Everhour APIs in both code and no-code steps.
You can get the API Token from the Everhour web app by going to Account Settings > My Profile at the bottom of the page.