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 siteimport { 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}`,
},
})
},
})
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.