Project Management & Team Communication
Emit new event when a comment is created. See the docs here
Emit new event based on the selected webhook type. See the docs here
Emit new event when a message is created. See the docs here
Emit new event when a to-do item is created. See the docs here
Publishes a comment to the select recording. See the docs here
Creates a line in the Campfire for a Basecamp Chatbot. See the documentation
The Basecamp API enables the automation of project management tasks, facilitating seamless interaction with Basecamp's project management tools. Through Pipedream, you can leverage the API to create custom workflows that trigger actions within Basecamp, sync data across various platforms, and enhance team collaboration with automated notifications and task management.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
basecamp: {
type: "app",
app: "basecamp",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://launchpad.37signals.com/authorization.json`,
headers: {
Authorization: `Bearer ${this.basecamp.$auth.oauth_access_token}`,
},
})
},
})
The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
typeform: {
type: "app",
app: "typeform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.typeform.com/me`,
headers: {
Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
},
})
},
})