/docusign | Type: Application | PCID required: Yes
Envelopes, signing, and templates
Tools
| Tool | Description |
|---|---|
docusign_get_user_info | Get DocuSign user information |
docusign_list_envelopes | Get a list of DocuSign envelopes |
docusign_get_envelope | Get details for a specific DocuSign envelope |
docusign_list_documents | List documents in a DocuSign envelope |
docusign_create_envelope | Create a new DocuSign envelope |
docusign_update_envelope | Update an existing DocuSign envelope |
docusign_get_document_download | Download a document from a DocuSign envelope |
docusign_update_envelope_status | Update the status of a DocuSign envelope |
docusign_list_trigger_capabilities | List available trigger capabilities for DocuSign |
docusign_create_trigger | Create a DocuSign Connect webhook configuration |
docusign_update_trigger | Update a DocuSign Connect webhook configuration |
docusign_delete_trigger | Delete a DocuSign Connect webhook configuration |
docusign_get_user_info
Get DocuSign user informationdocusign_list_envelopes
Get a list of DocuSign envelopes Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
accountId | string | Yes | — | DocuSign account ID |
status | string | No | — | Filter by envelope status |
fromDate | string | No | — | Start date for filtering (defaults to 30 days ago if not provided) |
toDate | string | No | — | End date for filtering |
limit | number | No | — | Maximum number of envelopes to return |
docusign_get_envelope
Get details for a specific DocuSign envelope Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
accountId | string | Yes | — | DocuSign account ID |
envelopeId | string | Yes | — | Envelope ID to retrieve |
docusign_list_documents
List documents in a DocuSign envelope Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
accountId | string | Yes | — | DocuSign account ID |
envelopeId | string | Yes | — | Envelope ID |
docusign_create_envelope
Create a new DocuSign envelope Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
accountId | string | Yes | — | DocuSign account ID |
envelopeDefinition | any | Yes | — | Envelope definition object |
docusign_update_envelope
Update an existing DocuSign envelope Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
accountId | string | Yes | — | DocuSign account ID |
envelopeId | string | Yes | — | Envelope ID to update |
envelopeDefinition | any | Yes | — | Updated envelope definition |
docusign_get_document_download
Download a document from a DocuSign envelope Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
accountId | string | Yes | — | DocuSign account ID |
envelopeId | string | Yes | — | Envelope ID |
documentId | string | Yes | — | Document ID to download |
docusign_update_envelope_status
Update the status of a DocuSign envelope Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
accountId | string | Yes | — | DocuSign account ID |
envelopeId | string | Yes | — | Envelope ID to update |
status | string | Yes | — | New status for the envelope |
docusign_list_trigger_capabilities
List available trigger capabilities for DocuSigndocusign_create_trigger
Create a DocuSign Connect webhook configuration Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
webhookUrl | string | Yes | — | Webhook URL to receive events |
accountId | string | Yes | — | DocuSign account ID |
name | string | Yes | — | Name for the Connect configuration |
events | string[] | Yes | — | Array of event types to subscribe to |
includeDocuments | boolean | No | false | Include document PDFs in webhook payload |
includeCertificateOfCompletion | boolean | No | false | Include certificate of completion |
enableLog | boolean | No | true | Enable logging for this configuration |
docusign_update_trigger
Update a DocuSign Connect webhook configuration Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
webhookUrl | string | Yes | — | Webhook URL to receive events |
accountId | string | Yes | — | DocuSign account ID |
connectId | string | Yes | — | Connect configuration ID to update |
name | string | No | — | Name for the Connect configuration |
events | string[] | No | — | Array of event types to subscribe to |
includeDocuments | boolean | No | — | Include document PDFs in webhook payload |
includeCertificateOfCompletion | boolean | No | — | Include certificate of completion |
enableLog | boolean | No | — | Enable logging for this configuration |
docusign_delete_trigger
Delete a DocuSign Connect webhook configuration Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
accountId | string | Yes | — | DocuSign account ID |
connectId | string | Yes | — | Connect configuration ID to delete |

