It's more than a calendar. Organize things in colors, grids, lists, and custom fields. Connect dots easily among schedules, people and information.
Go to siteThe Team Up API allows you to interact with your Team Up calendars programmatically, enabling the automation of event creation, updates, and deletion, as well as the retrieval of calendar data. By integrating the Team Up API with Pipedream, you can build workflows that trigger on specific events, automate tasks, and connect your calendar data with countless other services, bringing efficiency to team coordination and event management.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
team_up: {
type: "app",
app: "team_up",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.teamup.com/{your_calendar_id}/events`,
headers: {
"Content-Type": `application/json`,
"Teamup-Token": `${this.team_up.$auth.api_key}`,
},
})
},
})
Automated Event Creation from Emails: Create a Pipedream workflow that triggers when a new email arrives in your Gmail inbox with a specific subject line. Extract event details from the email and use the Team Up API to add a new event to your calendar.
Slack Notifications for Upcoming Events: Set up a Pipedream workflow that runs periodically, checks your Team Up calendar for upcoming events within the next 24 hours, and posts reminders in a designated Slack channel, keeping your team informed and prepared.
Syncing Team Up with Google Calendar: Build a workflow on Pipedream that triggers when a new event is added to your Team Up calendar. Use this trigger to then create a corresponding event in Google Calendar, ensuring that your schedules are synchronized across different calendar platforms.
Team Up uses API keys for authentication. When you connect your Team Up account, Pipedream securely stores the keys so you can easily authenticate to Team Up APIs in both code and no-code steps.