with BoldSign and Breathe?
Emit new event when a document is completed by all the signers.
Emit new event when an existing employee is updated in Breathe. See the documentation
Emit new event when a new employee is created in Breathe. See the documentation
Approve or reject an employee leave request in Breathe. See the documentation
Creates a new leave request for an employee in Breathe. See the documentation
Send documents for e-signature using a BoldSign template. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
boldsign: {
type: "app",
app: "boldsign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.boldsign.com/v1/users/list`,
headers: {
Authorization: `Bearer ${this.boldsign.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
breathe: {
type: "app",
app: "breathe",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.breathe.$auth.api_url}/v1/account`,
headers: {
"x-api-key": `${this.breathe.$auth.api_key}`,
},
})
},
})