Fitness management software for in-person and online classes at boutique gyms, studios, and boxes worldwide. #TeamUp
Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.
Deletes an existing event on a specified calendar. See the documentation
Updates an existing event on a specified calendar. See the documentation
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}`,
},
})
},
})
You can execute custom Go scripts on-demand or in response to various triggers and integrate with thousands of apps supported by Pipedream. Writing with Go on Pipedream enables backend operations like data processing, automation, or invoking other APIs, all within the Pipedream ecosystem. By leveraging Go's performance and efficiency, you can design powerful and fast workflows to streamline complex tasks.
package main
import (
"fmt"
pd "github.com/PipedreamHQ/pipedream-go"
)
func main() {
// Access previous step data using pd.Steps
fmt.Println(pd.Steps)
// Export data using pd.Export
data := make(map[string]interface{})
data["name"] = "Luke"
pd.Export("data", data)
}