FREE Chat & Communication App for Teams.
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})