import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pumble: {
type: "app",
app: "pumble",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://pumble-api-keys.addons.marketplace.cake.com/listChannels`,
headers: {
"Api-Key": `${this.pumble.$auth.api_key}`,
},
})
},
})
Pumble uses API keys for authentication. When you connect your Pumble account, Pipedream securely stores the keys so you can easily authenticate to Pumble APIs in both code and no-code steps.