import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hullo: {
type: "app",
app: "hullo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.hullo.me/api/endpoints/account`,
headers: {
"X-API-KEY": `${this.hullo.$auth.api_key}`,
},
})
},
})
Adds a new member or updates an existing member's data in Hullo. See the documentation
Sends a personalized message to a Hullo member. See the documentation
Hullo uses API keys for authentication. When you connect your Hullo account, Pipedream securely stores the keys so you can easily authenticate to Hullo APIs in both code and no-code steps.