ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

docusign

Send documents for electronic signature via DocuSign API. Create envelopes, track signing status, and download signed documents.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/mrgoodb/docusign
Or

DocuSign

Electronic signatures.

Environment

export DOCUSIGN_ACCESS_TOKEN="xxxxxxxxxx"
export DOCUSIGN_ACCOUNT_ID="xxxxxxxxxx"
export DOCUSIGN_BASE="https://demo.docusign.net/restapi"  # Use na1.docusign.net for prod

Send Document for Signature

curl -X POST "$DOCUSIGN_BASE/v2.1/accounts/$DOCUSIGN_ACCOUNT_ID/envelopes" \
  -H "Authorization: Bearer $DOCUSIGN_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "emailSubject": "Please sign this document",
    "documents": [{
      "documentBase64": "'$(base64 -w0 document.pdf)'",
      "name": "Contract.pdf",
      "documentId": "1"
    }],
    "recipients": {
      "signers": [{
        "email": "[email protected]",
        "name": "John Doe",
        "recipientId": "1",
        "tabs": {"signHereTabs": [{"documentId": "1", "pageNumber": "1", "xPosition": "100", "yPosition": "700"}]}
      }]
    },
    "status": "sent"
  }'

List Envelopes

curl "$DOCUSIGN_BASE/v2.1/accounts/$DOCUSIGN_ACCOUNT_ID/envelopes?from_date=2024-01-01" \
  -H "Authorization: Bearer $DOCUSIGN_ACCESS_TOKEN"

Get Envelope Status

curl "$DOCUSIGN_BASE/v2.1/accounts/$DOCUSIGN_ACCOUNT_ID/envelopes/{envelope_id}" \
  -H "Authorization: Bearer $DOCUSIGN_ACCESS_TOKEN"

Download Signed Document

curl "$DOCUSIGN_BASE/v2.1/accounts/$DOCUSIGN_ACCOUNT_ID/envelopes/{envelope_id}/documents/combined" \
  -H "Authorization: Bearer $DOCUSIGN_ACCESS_TOKEN" \
  -o signed_document.pdf

Links

Metadata

Author@mrgoodb
Stars1401
Views0
Updated2026-02-24
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-mrgoodb-docusign": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.