The leading data-first sales acceleration platform.
Adds rows to the end of specific table. See the documentation
Adds one or more contacts to a sequence in Apollo.io. See the documentation
Update the properties of tablerow object. (Only for work or school account)
See the documentation
The Apollo.io API on Pipedream enables you to automate sales processes by giving you programmatic access to your Apollo.io data. Through this API, you can manage leads, contacts, and opportunities, or sync data with your CRM. Pipedream's serverless platform allows you to connect Apollo.io with hundreds of other apps to automate workflows like lead enrichment, data syncing between apps, and triggering personalized communication based on prospect actions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
apollo_io: {
type: "app",
app: "apollo_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.apollo.io/v1/users/search`,
headers: {
"Cache-Control": `no-cache`,
"Content-Type": `application/json`,
},
params: {
api_key: `${this.apollo_io.$auth.api_key}`,
},
})
},
})
The Microsoft Excel API on Pipedream allows you to automate spreadsheet tasks, manipulate data, and integrate Excel with other apps and services. Through Pipedream, you can create serverless workflows that react to events, perform operations on Excel files like reading, writing, updating cells, and managing worksheets. This API turns Excel into a powerful tool for data analysis, report generation, and task automation without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_excel: {
type: "app",
app: "microsoft_excel",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_excel.$auth.oauth_access_token}`,
},
})
},
})