import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mumble: {
type: "app",
app: "mumble",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.mumble.co.il/mumbleapi/get-labels`,
headers: {
"mumble-api-key": `${this.mumble.$auth.api_key}`,
},
})
},
})
Adds a new customer. See the documentation
Adds a new label. See the documentation
Deletes a label. See the documentation
Edits the customer with the specified phone number. See the documentation
Mumble uses API keys for authentication. When you connect your Mumble account, Pipedream securely stores the keys so you can easily authenticate to Mumble APIs in both code and no-code steps.