🎁 Get the FREE AI Skills Starter GuideSubscribe →
BytesAgainBytesAgain
🦀 ClawHub

Docusign

by @aiwithabidi

DocuSign e-signatures — manage envelopes, templates, recipients, and signing via REST API

Versionv1.0.0
Installs1
TERMINAL
clawhub install docusign

📖 About This Skill


name: docusign description: "DocuSign e-signatures — manage envelopes, templates, recipients, and signing via REST API" homepage: https://www.agxntsix.ai license: MIT compatibility: Python 3.10+ (stdlib only — no dependencies) metadata: {"openclaw": {"emoji": "✍️", "requires": {"env": ["DOCUSIGN_ACCESS_TOKEN", "DOCUSIGN_ACCOUNT_ID", "DOCUSIGN_BASE_URL"]}, "primaryEnv": "DOCUSIGN_ACCESS_TOKEN", "homepage": "https://www.agxntsix.ai"}}

✍️ DocuSign

DocuSign e-signatures — manage envelopes, templates, recipients, and signing via REST API

Requirements

| Variable | Required | Description | |----------|----------|-------------| | DOCUSIGN_ACCESS_TOKEN | ✅ | OAuth access token | | DOCUSIGN_ACCOUNT_ID | ✅ | Account ID | | DOCUSIGN_BASE_URL | ✅ | Base URL (default: demo) |

Quick Start

# List envelopes
python3 {{baseDir}}/scripts/docusign.py envelopes --from_date  --status 

Get envelope

python3 {{baseDir}}/scripts/docusign.py envelope-get id

Create envelope

python3 {{baseDir}}/scripts/docusign.py envelope-create --subject --templateId --status

Void envelope

python3 {{baseDir}}/scripts/docusign.py envelope-void id --voidedReason

List recipients

python3 {{baseDir}}/scripts/docusign.py recipients id

List documents

python3 {{baseDir}}/scripts/docusign.py documents id

List templates

python3 {{baseDir}}/scripts/docusign.py templates --search_text

Get template

python3 {{baseDir}}/scripts/docusign.py template-get id

All Commands

| Command | Description | |---------|-------------| | envelopes | List envelopes | | envelope-get | Get envelope | | envelope-create | Create envelope | | envelope-void | Void envelope | | recipients | List recipients | | documents | List documents | | templates | List templates | | template-get | Get template | | audit-events | Get audit events | | folders | List folders | | users | List users |

Output Format

All commands output JSON by default. Add --human for readable formatted output.

python3 {{baseDir}}/scripts/docusign.py  --human

Script Reference

| Script | Description | |--------|-------------| | {{baseDir}}/scripts/docusign.py | Main CLI — all commands in one tool |

Credits

Built by M. Abidi | agxntsix.ai YouTube | GitHub Part of the AgxntSix Skill Suite for OpenClaw agents.

📅 Need help setting up OpenClaw for your business? Book a free consultation

💡 Examples

# List envelopes
python3 {{baseDir}}/scripts/docusign.py envelopes --from_date  --status 

Get envelope

python3 {{baseDir}}/scripts/docusign.py envelope-get id

Create envelope

python3 {{baseDir}}/scripts/docusign.py envelope-create --subject --templateId --status

Void envelope

python3 {{baseDir}}/scripts/docusign.py envelope-void id --voidedReason

List recipients

python3 {{baseDir}}/scripts/docusign.py recipients id

List documents

python3 {{baseDir}}/scripts/docusign.py documents id

List templates

python3 {{baseDir}}/scripts/docusign.py templates --search_text

Get template

python3 {{baseDir}}/scripts/docusign.py template-get id