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.
The 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}`,
},
})
},
})
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.