Enable, track & reward partners to sell and scale your software.
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}`,
},
})
},
})
The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
typeform: {
type: "app",
app: "typeform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.typeform.com/me`,
headers: {
Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
},
})
},
})