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}`,
},
})
},
})
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
BunnyDoc uses API keys for authentication. When you connect your BunnyDoc account, Pipedream securely stores the keys so you can easily authenticate to BunnyDoc APIs in both code and no-code steps.