Toggl Track

Time tracking software

Integrate the Toggl Track API with the Zoom Admin API

Setup the Toggl Track API trigger to run a workflow which integrates with the Zoom Admin API. Pipedream's integration platform allows you to integrate Toggl Track and Zoom Admin remarkably fast. Free for developers.

Get Current Time Entry with Toggl Track API on Account Created from Zoom Admin API
Zoom Admin + Toggl Track
 
Try it
Get Time Entries with Toggl Track API on Account Created from Zoom Admin API
Zoom Admin + Toggl Track
 
Try it
Get Time Entry with Toggl Track API on Account Created from Zoom Admin API
Zoom Admin + Toggl Track
 
Try it
Get Current Time Entry with Toggl Track API on Custom Events from Zoom Admin API
Zoom Admin + Toggl Track
 
Try it
Get Current Time Entry with Toggl Track API on Meeting Started from Zoom Admin API
Zoom Admin + Toggl Track
 
Try it
Account Created from the Zoom Admin API

Emits an event each time a sub-account is created in your master account

 
Try it
Custom Events from the Zoom Admin API

Listen for any events tied to your Zoom account

 
Try it
Meeting Started from the Zoom Admin API

Emits an event each time a meeting starts in your Zoom account

 
Try it
New Start Time Entry (Instant) from the Toggl Track API

Emit new event when a time entry is started. See docs here

 
Try it
Account Updated from the Zoom Admin API

Emits an event each time your master account or sub-account profile is updated

 
Try it
Get Current Time Entry with the Toggl Track API

Get the time entry that is running now. [See docs here]https://developers.track.toggl.com/docs/api/time_entries#get-get-current-time-entry)

 
Try it
Get Time Entries with the Toggl Track API

Get the last thousand time entries. See docs here

 
Try it
Get Time Entry with the Toggl Track API

Get details about a specific time entry. See docs here

 
Try it
Add meeting registrant with the Zoom Admin API

Register a participant for a meeting. See the docs here

 
Try it
Add webinar panelist with the Zoom Admin API

Register a panelist for a webinar. See the docs here

 
Try it

Overview of Toggl Track

Toggl Track is a time tracking API that lets you start, stop, and manage timers and time entries, as well as manage projects, clients, and tasks associated with time records. With the Toggl Track API on Pipedream, you can automate time tracking activities, synchronize data across platforms, and generate insights from time tracking data to improve productivity and project management.

Connect Toggl Track

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: {
    toggl: {
      type: "app",
      app: "toggl",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.track.toggl.com/api/v9/me`,
      auth: {
        username: `${this.toggl.$auth.api_token}`,
        password: `api_token`,
      },
    })
  },
})

Overview of Zoom Admin

The Zoom Admin API lets you harness the extensive capabilities of Zoom for automation and integration, right within Pipedream. Automate user management, track Zoom rooms, monitor webinars and meetings, and customize your workflow to respond dynamically to events like new participants or ended meetings. With these APIs and the power of Pipedream, you can streamline administrative tasks, extract valuable insights, and sync Zoom activities with other services.

Connect Zoom Admin

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    zoom_admin: {
      type: "app",
      app: "zoom_admin",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.zoom.us/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.zoom_admin.$auth.oauth_access_token}`,
      },
    })
  },
})