Loading...
Loading...
Manage DocuSeal e-signature workflows from the terminal via the DocuSeal CLI - create templates from PDF/DOCX/HTML, send documents for signing, track submissions, and update submitters. Use when the user wants to run DocuSeal commands in the shell, scripts, or CI/CD pipelines. Always load this skill before running `docuseal` commands.
npx skill4agent add docusealco/docuseal-agent-skills docuseal-cli-d key=value-d '{"..": ".."}'DOCUSEAL_API_KEYDOCUSEAL_SERVERglobaleuropehttps://docuseal.yourdomain.com| Command Group | What it does |
|---|---|
| list, retrieve, update, archive, create-pdf, create-docx, create-html, clone, merge, update-documents |
| list, retrieve, archive, create, send-emails, create-pdf, create-docx, create-html, documents |
| list, retrieve, update |
| # | Mistake | Fix |
|---|---|---|
| 1 | Forgetting | |
| 2 | Passing a plain file path as a URL | |
| 3 | Expecting array params as comma-separated | Arrays use bracket notation: |
| 4 | Using | Commands marked (Pro) require a DocuSeal Pro subscription |
| 5 | Sending to multiple recipients with | Use |
documents[0][file]=https://...docuseal templates list --q "NDA" --limit 20docuseal templates create-pdf --file contract.pdf --name "NDA"
docuseal submissions send-emails --template-id 1001 --emails signer@example.comdocuseal submissions create --template-id 1001 \
-d "submitters[0][email]=john@acme.com" \
-d "submitters[0][values][Company Name]=Acme Corp"docuseal submissions create --template-id 1001 \
-d '{"submitters": [{"email": "john@acme.com", "values": {"Company Name": "Acme Corp"}}]}'docuseal submissions list --template-id 1001 --status pendingdocuseal submitters update 201 --email new@acme.com --send-email