with signNow and Mumble?
Emit new event when all signers have filled in and signed the document. See the documentation
Emit new event when a document has been updated. See the documentation
Creates a new document copy out of a template. See the documentation
Adds values to fields that the signers can later edit when they receive the document for signature. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signnow: {
type: "app",
app: "signnow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.signnow.com/user`,
headers: {
Authorization: `Bearer ${this.signnow.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})