with APIpie.ai and Regal?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
apipie_ai: {
type: "app",
app: "apipie_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://apipie.ai/v1/models`,
headers: {
"X-API-Key": `${this.apipie_ai.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
regal: {
type: "app",
app: "regal",
}
},
async run({steps, $}) {
const data = {
"userId": "testing",
"traits": {
"phones": {
"+19545552399": {}
},
"firstName": "Rebecca",
"lastName": "Greene"
},
"eventSource": "crm"
}
return await axios($, {
method: "post",
url: `https://events.regalvoice.com/events`,
headers: {
"Authorization": `${this.regal.$auth.api_key}`,
},
data,
})
},
})