with Mintlify and LeadDyno?
Emit new event when a new affiliate is created in LeadDyno. See the documentation
Emit new event when a new lead is created in LeadDyno. See the documentation
Emit new event when a new purchase is created in LeadDyno. See the documentation
Retrieves information about a lead from LeadDyno. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mintlify: {
type: "app",
app: "mintlify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mintlify.com/v1/project/update-status/{statusId}`,
headers: {
Authorization: `Bearer ${this.mintlify.$auth.admin_api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
leaddyno: {
type: "app",
app: "leaddyno",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.leaddyno.com/v1/visitors`,
params: {
key: `${this.leaddyno.$auth.api_key}`,
},
})
},
})