with Homerun and Basecamp?
Emit new event when a candidate submits an application for a job posting. See the documentation
Emit new event when a new vacancy is created. See the documentation
Emit new event when a comment is created. See the documentation
Emit new event when a message is created. See the documentation
Emit new event when a to-do item is created. See the documentation
Adds a note to a candidate's profile in Homerun. See the documentation
Creates a comment in a selected recording. See the documentation
Creates a message in a Campfire for a Basecamp Chatbot. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
homerun: {
type: "app",
app: "homerun",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.homerun.co/v2/ping`,
headers: {
Authorization: `Bearer ${this.homerun.$auth.api_key}`,
"content-type": `application/json`,
},
})
},
})
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}`,
},
})
},
})