Appearance
DocuSign eSignature
Create, send, and manage envelopes and signing ceremonies via DocuSign.
| Detail | Value |
|---|---|
| Category | Legal |
| Base URL | https://na4.docusign.net/restapi/v2.1 |
| Authentication | OAuth2 |
| Endpoints | 5 |
| Connector key | docusign-esign |
Using DocuSign eSignature in a workflow
- Go to Connections and click New Connection.
- Pick DocuSign eSignature from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /accounts/{accountId}/envelopes | List envelopes |
POST /accounts/{accountId}/envelopes | Create and send an envelope |
GET /accounts/{accountId}/envelopes/{envelopeId} | Get envelope details |
GET /accounts/{accountId}/envelopes/{envelopeId}/documents | List envelope documents |
GET /accounts/{accountId}/templates | List templates |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /accounts/{accountId}/envelopes
List envelopes
| Detail | Value |
|---|---|
| Operation ID | legal.listEnvelopes |
| Method | GET |
| Path | /accounts/{accountId}/envelopes |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
accountId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your DocuSign eSignature connection from the Connection dropdown.
- In the Operation dropdown, select
legal.listEnvelopes. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream DocuSign eSignature API reference.
POST /accounts/{accountId}/envelopes
Create and send an envelope
| Detail | Value |
|---|---|
| Operation ID | legal.createEnvelope |
| Method | POST |
| Path | /accounts/{accountId}/envelopes |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
accountId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your DocuSign eSignature connection from the Connection dropdown.
- In the Operation dropdown, select
legal.createEnvelope. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream DocuSign eSignature API reference.
GET /accounts/{accountId}/envelopes/{envelopeId}
Get envelope details
| Detail | Value |
|---|---|
| Operation ID | legal.getEnvelope |
| Method | GET |
| Path | /accounts/{accountId}/envelopes/{envelopeId} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
accountId | path | string | Yes |
envelopeId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your DocuSign eSignature connection from the Connection dropdown.
- In the Operation dropdown, select
legal.getEnvelope. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream DocuSign eSignature API reference.
GET /accounts/{accountId}/envelopes/{envelopeId}/documents
List envelope documents
| Detail | Value |
|---|---|
| Operation ID | legal.listDocuments |
| Method | GET |
| Path | /accounts/{accountId}/envelopes/{envelopeId}/documents |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
accountId | path | string | Yes |
envelopeId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your DocuSign eSignature connection from the Connection dropdown.
- In the Operation dropdown, select
legal.listDocuments. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream DocuSign eSignature API reference.
GET /accounts/{accountId}/templates
List templates
| Detail | Value |
|---|---|
| Operation ID | legal.listTemplates |
| Method | GET |
| Path | /accounts/{accountId}/templates |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
accountId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your DocuSign eSignature connection from the Connection dropdown.
- In the Operation dropdown, select
legal.listTemplates. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream DocuSign eSignature API reference.