with Fiserv and Peach?
Send a predefined message to a contact within the Peach app. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fiserv: {
type: "app",
app: "fiserv",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.fiserv.$auth.url}/sandbox/exp/v1/authorisations`,
headers: {
"API-Key": `${this.fiserv.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
peach: {
type: "app",
app: "peach",
}
},
async run({steps, $}) {
const data = {
"name": `John Smith`,
"phone_number": `+919876543210`,
"email": `john.smith@example.com`,
}
return await axios($, {
method: "post",
url: `https://app.trypeach.io/api/v1/contacts`,
headers: {
"Authorization": `${this.peach.$auth.api_token}`,
},
data,
})
},
})