Tick keeps projects on track so you make more money. It's time tracking worth everyone's time.
Go to siteWith the Tick API, you can build a range of custom applications and integrations to help your business work smarter and faster. The Tick API allows users to access and manage their projects, tasks, timesheets, and invoices in their own applications and websites.
Using the Tick API, you can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tick: {
type: "app",
app: "tick",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.tickspot.com/${this.tick.$auth.subscription_id}/api/v2/users.json`,
headers: {
"Authorization": `Token token=${this.tick.$auth.api_token}`,
"User-Agent": `MyCoolApp (${this.tick.$auth.email})`,
},
})
},
})
Tick uses API keys for authentication. When you connect your Tick account, Pipedream securely stores the keys so you can easily authenticate to Tick APIs in both code and no-code steps.
email
, provide an email address for Tick to use in case they need to contact you.