Legally Binding Electronic Signatures.
Emit new event each time a signature request is completed.
Emit new event each time a signature request is signed.
Emit new event when a signature request is viewed.
Sends a signature request using a pre-designed bunnydoc template. See the documentation
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bunnydoc: {
type: "app",
app: "bunnydoc",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bunnydoc.com/v1/listTeamMembers`,
headers: {
"Authorization": `API-KEY ${this.bunnydoc.$auth.api_key}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})