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}`,
},
})
},
})
Create a new channel in Pumble. See the documentation
List messages in a channel. See the documentation
Send a message to a channel in Pumble. See the documentation
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.