eSignatures.io provides a simple way to collect electronic signatures on any device.
Go to siteThe eSignatures.io API enables automated, legally-binding online contract signing. With this API, you can generate contracts from templates, send them to signees, and track the entire signing process. Leveraging this functionality within Pipedream allows you to create powerful automations that streamline contract management, integrate with CRM systems, trigger actions upon contract completion, and much more, eliminating manual tasks and enhancing productivity.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
esignatures_io: {
type: "app",
app: "esignatures_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://esignatures.io/api/contracts/contract_id_goes_here`,
auth: {
username: `${this.esignatures_io.$auth.api_token}`,
password: ``,
},
})
},
})
Contract Generation on New CRM Deal: When a new deal is marked as won in a CRM like HubSpot, automatically generate a contract via eSignatures.io and send it to the client. Streamline the sales process by ensuring contracts are sent out immediately following a deal's closure.
Contract Status Tracking in Project Management Tools: Monitor contract signing status and, upon completion, update tasks in project management apps like Trello or Asana. This can automate the transition of tasks from 'pending contract' to 'in progress', ensuring project workflows are updated in real-time.
Automated Follow-up Emails Post-Signing: After a contract is fully signed, trigger an email through an email service like SendGrid to thank the signees, provide additional resources, or outline next steps. This can enhance client relations and ensure timely communication.
Creates a contract and sends the links (via email or SMS) to the signers to collect their signatures. See docs here
eSignatures.io uses API keys for authentication. When you connect your eSignatures.io account, Pipedream securely stores the keys so you can easily authenticate to eSignatures.io APIs in both code and no-code steps.
When logged in to your eSignatures.io account, your API secret token will be displayed on the dashboard page, on the integration tab on the top right.