with Apify (OAuth) and Teamup?
Emit new event when a selected Actor is run and finishes.
Emit new event when a selected task is run and finishes.
Emit new event when an event is created or updated on a specified calendar.
Deletes an existing event on a specified calendar. See the documentation
Performs an execution of a selected Actor in Apify. See the documentation
Run a specific task and return its dataset items. See the documentation
import { axios } from "@pipedream/platform" export default defineComponent({ props: { apify_oauth: { type: "app", app: "apify_oauth", } }, async run({steps, $}) { return await axios($, { url: `https://api.apify.com/v2/users/me`, headers: { Authorization: `Bearer ${this.apify_oauth.$auth.oauth_access_token}`, }, }) }, }) The TeamUp API provides an interface to interact with TeamUp's calendar services, allowing for robust management of schedules, events, and calendars. Leveraging this API within Pipedream, you can create automated workflows that handle event synchronization, notifications, and calendar data manipulation. Pipedream's serverless platform facilitates seamless integration with various services to enhance the capabilities of TeamUp, such as triggering actions on a schedule or in response to events, and connecting with other apps like Slack or Google Sheets for extended functionality.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { teamup: { type: "app", app: "teamup", } }, async run({steps, $}) { return await axios($, { url: `https://api.teamup.com/check-access`, headers: { "Teamup-Token": `${this.teamup.$auth.api_key}`, }, }) }, })