with OpnForm and Relavate?
This component enables you to create a new affiliate lead for marketing. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
opnform: {
type: "app",
app: "opnform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.opnform.com/external/zapier/validate`,
headers: {
Authorization: `Bearer ${this.opnform.$auth.api_key}`,
},
})
},
})
The Relavate API provides tools for managing customer relations and sales efforts, enabling users to automate and optimize their CRM activities. With capabilities for managing contacts, companies, deals, and tasks, the API can serve as a backbone for CRM automation, enhancing customer interaction and business processes efficiency. On Pipedream, you can leverage these functionalities to create advanced workflows, integrate with other apps, and automate tasks based on events from the Relavate system or external triggers.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
relavate: {
type: "app",
app: "relavate",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.relavate.co/api/vendors/partners/all`,
headers: {
"X-key": `${this.relavate.$auth.api_key}`,
"X-secret": `${this.relavate.$auth.api_secret}`,
"X-partnerType": `${this.relavate.$auth.partner_type}`,
},
})
},
})