with ntfy and Tubular?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ntfy: {
type: "app",
app: "ntfy",
}
},
async run({steps, $}) {
const data = `Backup successful 😀`
return await axios($, {
method: "post",
url: `${this.ntfy.$auth.server}/test`,
headers: {
"Content-Type": "text/plain"
},
data,
})
},
})
The Tubular API furnishes you with the tools to craft intricate customer relationship management workflows within Pipedream. Utilize it to automate processes, track sales pipeline progress, manage contacts, and gain insights from your sales data. With Tubular's API, you can seamlessly integrate sales data into other systems, establish notifications for sales updates, and much more, making it simpler for teams to collaborate and stay informed on sales activities.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tubular: {
type: "app",
app: "tubular",
}
},
async run({steps, $}) {
const data = {
"query": `{viewer{id fullName}}`,
}
return await axios($, {
method: "post",
url: `https://api.tubular.io/graphql`,
headers: {
"Authorization": `${this.tubular.$auth.api_token}`,
"Content-Type": `application/json`,
},
data,
})
},
})