Project Management & Team Communication
Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.
Get a URL and emit the HTTP body as an event on every request
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
Publishes a comment to the select recording. See the docs here
Creates a line in the Campfire for the selected project. See the docs here
Publishes a message in the project and message board selected. See the docs here
Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.
Creates a todo in the project and message board selected. See the docs here
Using the Basecamp API, you can build applications that:
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}`,
},
})
},
})
// To use any npm package on Pipedream, just import it
import axios from "axios"
export default defineComponent({
async run({ steps, $ }) {
const { data } = await axios({
method: "GET",
url: "https://pokeapi.co/api/v2/pokemon/charizard",
})
return data.species
},
})