with Autoklose and Gather?
The Autoklose API taps into the power of sales automation, enabling users to streamline email campaigns, manage contacts, and track performance metrics without manual effort. By leveraging the API with Pipedream, you can craft serverless workflows that react to various triggers, such as new subscribers or campaign events, and automate actions like updating CRM records or initiating follow-up tasks. This orchestration is key to nurturing leads efficiently and can dramatically improve a sales team's productivity.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
autoklose: {
type: "app",
app: "autoklose",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.autoklose.com/api/me`,
params: {
api_token: `${this.autoklose.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gather: {
type: "app",
app: "gather",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.gather.town/api/getEmailGuestlist`,
params: {
spaceId: `${this.gather.$auth.space_id}`,
apiKey: `${this.gather.$auth.api_key}`,
},
})
},
})