Get a unique URL where you can send HTTP or webhook requests
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 the content of the URL changes.
Emit new event when a column value is updated on a board in Monday. For changes to Name, use the Name Updated Trigger.
Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.
Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.
// 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
},
})
With the monday.com API you can build a variety of applications and
integrations. Some examples include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
monday: {
type: "app",
app: "monday",
}
},
async run({steps, $}) {
const data = {
"query": `query {
me {
is_guest
join_date
}
}`,
}
return await axios($, {
url: `https://api.monday.com/v2`,
headers: {
"Authorization": `${this.monday.$auth.api_key}`,
},
data,
})
},
})