with Moskit and Relintex CRM?
The Moskit API, integrated with Pipedream, offers a robust platform for automating CRM-related activities. With this API, you can orchestrate data synchronization, streamline customer engagement processes, and enhance sales workflows. By leveraging the Moskit API through Pipedream, you can create custom serverless workflows that react to various CRM events, manipulate data, and connect with countless other services for a seamless automation experience.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
moskit: {
type: "app",
app: "moskit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.moskitcrm.com/v2/users`,
headers: {
"apikey": `${this.moskit.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
relintex_crm: {
type: "app",
app: "relintex_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://connect-test.relintex.net/api/v2/lead/list`,
headers: {
"accept": `application/json`,
},
auth: {
username: `${this.relintex_crm.$auth.username}`,
password: `${this.relintex_crm.$auth.password}`,
},
params: {
page_size: `100`,
page: `1`,
},
})
},
})