Electronic Signature Software & API
Send documents for e-signature using a BoldSign 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: {
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})