Tick

Tick keeps projects on track so you make more money. It's time tracking worth everyone's time.

Go to site

Tick API Integrations

Build and run workflows using the Tick API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With 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:

  • Create timesheet entries and add time tracking to your own apps
  • Receive notifications when a project is marked "Done"
  • View, create and update invoices
  • Pull real-time analytics such as hours logged, budgeted vs. actual, and percentage completion
  • Get up-to-date activity reports on project activity and task completion
  • Automate data entry by creating and updating projects, tasks, and time entries
  • Integrate with other applications such as Slack and GSuite to streamline workflows
  • Use API Key authentication for secure access to data
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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})`,
      },
    })
  },
})
Create Client with Tick API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Tick
 
Try it
Send Message (Advanced) with Discord Webhook API on New Task from Tick API
Tick + Discord Webhook
 
Try it
Create Client with Tick API on New Message in Channel from Discord Bot API
Discord Bot + Tick
 
Try it
Create Client with Tick API on New Submission from Typeform API
Typeform + Tick
 
Try it
Create Client with Tick API on Custom Events from Zoom API
Zoom + Tick
 
Try it
New Client from the Tick API

Emit new event on each created client.

 
Try it
New Project from the Tick API

Emit new event on each created project.

 
Try it
New Task from the Tick API

Emit new event on each created task.

 
Try it
New Time Entry from the Tick API

Emit new event on each created time entry.

 
Try it
Create Client with the Tick API

Creates a client. See docs here

 
Try it
Create Project with the Tick API

Creates a project. See docs here

 
Try it
Create Task with the Tick API

Creates a task. See docs here

 
Try it
Create Time Entry with the Tick API

Creates a time entry. See docs here

 
Try it
Create User with the Tick API

Creates a user. See docs here

 
Try it

Authentication

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.

  • To retrieve your API Token and Subscription ID, sign in to your Tick account and navigate to your Account page, then find the API Information on the right column.
  • For email, provide an email address for Tick to use in case they need to contact you.