Get documents sent and signed securely, stay organised and reduce costs with Signable.
The Signable API allows for the automation of electronic signature processes. Integrating this API into Pipedream workflows enables users to create, send, and manage documents that require signatures, streamlining the handling of contracts and agreements. By leveraging this API, you can automate notifications, sync data with other services, or initiate signature requests as part of larger automated business processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signable: {
type: "app",
app: "signable",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.signable.co.uk/v1/users`,
auth: {
username: `${this.signable.$auth.api_key}`,
password: `x`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.