Workflows

Workflows API

Automate signing processes and manage approval chains.

Base URL

https://api.averdoc.com/api/v1


List Workflows

Get a list of available workflow templates.

GET /workflows


Initiate Workflow

Start a signing process based on a template.

POST /workflows/{id}/start

Parameter Type Description
id string Required. The Workflow Template ID.

Body

{
  "recipients": [
    {
      "email": "[email protected]",
      "role": "Signer"
    }
  ]
}