with GitLab and TidyCal?
Triggered when an existing appointment is cancelled by a client or by the owner. See the documentation
Triggered when a new appointment is booked using TidyCal. See the documentation
The GitLab API provides programmatic access to your GitLab projects, allowing you to automate common tasks, manage issues, merge requests, and more. With the GitLab API on Pipedream, you can create customized workflows that integrate with other services, streamline your development process, and enhance project management. By leveraging the power of serverless, you can set up triggers for GitLab events and perform actions across a variety of apps without managing infrastructure.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { gitlab: { type: "app", app: "gitlab", } }, async run({steps, $}) { return await axios($, { url: `https://${this.gitlab.$auth.base_api_url}/api/v4/user`, headers: { Authorization: `Bearer ${this.gitlab.$auth.oauth_access_token}`, }, }) }, })
The TidyCal API allows for scheduling automation, linking your calendar to create and manage bookings. In Pipedream, you can harness this API to create event-driven workflows, such as syncing with other calendar services, triggering reminders, or connecting with CRM systems to streamline your scheduling process. Pipedream's serverless platform enables you to build and run these workflows efficiently, without the need to manage infrastructure.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { tidycal: { type: "app", app: "tidycal", } }, async run({steps, $}) { return await axios($, { url: `https://tidycal.com/api/me`, headers: { Authorization: `Bearer ${this.tidycal.$auth.oauth_access_token}`, }, }) }, })