with Domo and Action Network?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
domo: {
type: "app",
app: "domo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.domo.com/v1/users`,
headers: {
Authorization: `Bearer ${this.domo.$auth.oauth_access_token}`,
},
})
},
})
The Action Network API lets you tap into a powerful tool for organizing and mobilizing activists. With this API, you can automate the management of events, petitions, fundraising, and email campaigns, syncing data seamlessly to other platforms. It's a perfect fit for political campaigns, non-profits, and grassroots movements looking to streamline their digital efforts and boost engagement through smart automations.
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`,
},
})
},
})