with OFFLIGHT and Systeme.io?
Initiates the creation of a new task in Offlight. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
offlight: {
type: "app",
app: "offlight",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.offlight.work/auth/check`,
headers: {
"x-api-key": `${this.offlight.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
systeme_io: {
type: "app",
app: "systeme_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.systeme.io/api/contacts`,
headers: {
"x-api-key": `${this.systeme_io.$auth.api_key}`,
},
})
},
})