Annature is the leading AU & NZ eSignature provider for small businesses and enterprises. We deliver a complete ISO 27001 certified Digital Transaction Management (DTM) solution built on blockchain technology.
Go to siteThe Annature API provides functionality for electronic signatures, allowing documents to be signed digitally with ease and security. Integrating this API with Pipedream, users can automate document workflows, such as sending contracts for signature, tracking the status of documents, and storing signed agreements. By leveraging serverless workflows on Pipedream, these processes can be connected to hundreds of other apps to create efficient automation solutions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
annature: {
type: "app",
app: "annature",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.annature.com.au/v1/accounts`,
headers: {
"Accept": `application/json`,
"Content-Type": `application/json`,
"X-Annature-Id": `${this.annature.$auth.id}`,
"X-Annature-Key": `${this.annature.$auth.key}`,
},
})
},
})
Automated Contract Deployment: Set up a workflow that triggers when a new customer is added to your CRM (like Salesforce). The workflow automatically sends a pre-filled contract for electronic signature via Annature, streamlining the onboarding process.
Document Status Tracking: Implement a Pipedream workflow that polls the Annature API for updates on document status. When a document is fully signed, trigger an action to update your project management tool (like Asana) and notify the team through a messaging platform (like Slack).
Secure Document Archiving: Create a workflow that reacts to a webhook from Annature indicating a completed signature. The workflow could then store the signed document in a secure cloud storage service (like Google Drive) and log the transaction in a database for reference.
Annature uses API keys for authentication. When you connect your Annature account, Pipedream securely stores the keys so you can easily authenticate to Annature APIs in both code and no-code steps.
Generate and copy your API keys from your dashboard under “Developers“.