An intuitive, comprehensive online tool set that empowers progressive campaigns to be stronger & more effective
Go to siteAction Network is a powerful tool that allows you to do a lot with their API. Here are some examples of what you can do:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
action_network: {
type: "app",
app: "action_network",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://actionnetwork.org/api/v2/people`,
params: {
"OSDI-API-Token": `${this.action_network.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
Action Network uses API keys for authentication. When you connect your Action Network account, Pipedream securely stores the keys so you can easily authenticate to Action Network APIs in both code and no-code steps.
Generate and copy your API Key from the “API & Sync“ page.