Appearance
DocuSign
Electronic signature and document management API. Send envelopes, manage templates, and track signing status.
| Detail | Value |
|---|---|
| Category | Productivity |
| Base URL | https://www.docusign.net/restapi/v2.1 |
| Authentication | OAuth2 |
| Endpoints | 5 |
| Connector key | docusign |
Using DocuSign in a workflow
- Go to Connections and click New Connection.
- Pick DocuSign 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 |
|---|---|
POST /accounts/{accountId}/envelopes | Create and send an envelope |
GET /accounts/{accountId}/envelopes | List envelopes |
GET /accounts/{accountId}/envelopes/{envelopeId} | Get envelope details |
GET /accounts/{accountId}/templates | List templates |
GET /accounts/{accountId}/envelopes/{envelopeId}/documents | List envelope documents |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
POST /accounts/{accountId}/envelopes
Create and send an envelope
| Detail | Value |
|---|---|
| Operation ID | docs.createEnvelope |
| Method | POST |
| Path | /accounts/{accountId}/envelopes |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
accountId | path | string | Yes |
Request Body
| Field | Type |
|---|---|
documents | array |
recipients | object |
status | string |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your DocuSign connection from the Connection dropdown.
- In the Operation dropdown, select
docs.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 API reference.
GET /accounts/{accountId}/envelopes
List envelopes
| Detail | Value |
|---|---|
| Operation ID | docs.listEnvelopes |
| Method | GET |
| Path | /accounts/{accountId}/envelopes |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
accountId | path | string | Yes |
from_date | query | string | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your DocuSign connection from the Connection dropdown.
- In the Operation dropdown, select
docs.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 API reference.
GET /accounts/{accountId}/envelopes/{envelopeId}
Get envelope details
| Detail | Value |
|---|---|
| Operation ID | docs.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 connection from the Connection dropdown.
- In the Operation dropdown, select
docs.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 API reference.
GET /accounts/{accountId}/templates
List templates
| Detail | Value |
|---|---|
| Operation ID | docs.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 connection from the Connection dropdown.
- In the Operation dropdown, select
docs.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 API reference.
GET /accounts/{accountId}/envelopes/{envelopeId}/documents
List envelope documents
| Detail | Value |
|---|---|
| Operation ID | docs.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 connection from the Connection dropdown.
- In the Operation dropdown, select
docs.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 API reference.