with Mumble and Returnless?
Edits the customer with the specified phone number. See the documentation
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
returnless: {
type: "app",
app: "returnless",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-v2.returnless.com/2023-01/account`,
headers: {
Authorization: `Bearer ${this.returnless.$auth.api_key}`,
"content-type": `application/json`,
},
})
},
})