with Moaform and Mumble?
Emit new event every time a new form submission is received.
Edits the customer with the specified phone number. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
moaform: {
type: "app",
app: "moaform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.moaform.com/v1/forms`,
headers: {
Authorization: `Bearer ${this.moaform.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})