import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bloomerang: {
type: "app",
app: "bloomerang",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bloomerang.co/v2/user/current`,
headers: {
"accept": `application/json`,
"x-api-key": `${this.bloomerang.$auth.api_key}`,
},
})
},
})
Adds an interaction to an existing constituent in Bloomerang. See the documentation
Creates a new constituent in Bloomerang. See the documentation
Creates a new donation record in Bloomerang. See the documentation
Bloomerang uses API keys for authentication. When you connect your Bloomerang account, Pipedream securely stores the keys so you can easily authenticate to Bloomerang APIs in both code and no-code steps.