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,
})
},
})
Creates a contact in your account. See the documentation
Send a predefined message to a contact within the Peach app. See the documentation
Peach uses API keys for authentication. When you connect your Peach account, Pipedream securely stores the keys so you can easily authenticate to Peach APIs in both code and no-code steps.