import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
belco: {
type: "app",
app: "belco",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.belco.io/v1/users`,
headers: {
Authorization: `Bearer ${this.belco.$auth.api_token}`,
"accept": `application/json`,
},
})
},
})
Emit new event for each new conversation assigned event
Emit new event for each new conversation closed event
Emit new event for each new conversation reopened event
Emit new event for each new conversation replied event
Emit new conversation event when a new conversation is created. See the documentation
Belco uses API keys for authentication. When you connect your Belco account, Pipedream securely stores the keys so you can easily authenticate to Belco APIs in both code and no-code steps.