ProveSource streams recent customer actions on your website to build trust and boost conversions.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
provesource: {
type: "app",
app: "provesource",
}
},
async run({steps, $}) {
const data = {
"email": `{{your_email}}`,
"name": `{{your_name}}`,
}
return await axios($, {
method: "POST",
url: `${this.provesource.$auth.webhook_url}`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})
ProveSource uses API keys for authentication. When you connect your ProveSource account, Pipedream securely stores the keys so you can easily authenticate to ProveSource APIs in both code and no-code steps.
The ProveSource API does not enforce authentication.
To retrieve your Webhook URL,
Note: This applies to notifications tracking Webhook events, for more information see ProveSource docs