Skillshub PandaDoc Automation
Automate document workflows with PandaDoc -- create documents from files, manage contacts, organize folders, set up webhooks, create templates, and track document status through the Composio PandaDoc integration.
git clone https://github.com/ComeOnOliver/skillshub
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ComposioHQ/awesome-claude-skills/pandadoc-automation" ~/.claude/skills/comeonoliver-skillshub-pandadoc-automation && rm -rf "$T"
skills/ComposioHQ/awesome-claude-skills/pandadoc-automation/SKILL.mdPandaDoc Automation
Manage PandaDoc document workflows directly from Claude Code. Create documents from uploaded files, manage recipients and contacts, organize with folders, set up event webhooks, create templates, and track document status without leaving your terminal.
Toolkit docs: composio.dev/toolkits/pandadoc
Setup
- Add the Composio MCP server to your configuration:
https://rube.app/mcp - Connect your PandaDoc account when prompted. The agent will provide an OAuth link to authenticate.
- Ensure your PandaDoc workspace has the appropriate plan for the features you need (e.g., e-signatures, templates, webhooks).
Core Workflows
1. Create a Document from File
Upload a PDF, DOCX, or RTF file to create a new PandaDoc document with designated recipients for signing and tracking.
Tool:
PANDADOC_CREATE_DOCUMENT_FROM_FILE
Key parameters:
(required) -- document namename
(required) -- array of recipient objects, each with:recipients
(required) -- recipient emailemail
,first_name
-- recipient namelast_name
--role
(default),signer
, orapprover
(must be unique per recipient)cc
-- numeric order (if set for one, must be set for all)signing_order
-- uploaded file object withfile
,name
, andmimetypes3key
-- alternatively, a public HTTPS URL to the fileurl
(default false) -- parse PDF form fieldsparse_form_fields
-- array of strings for categorizationtags
-- document owner (email or membership_id)owner
Example prompt: "Create a PandaDoc document from contract.pdf with john@example.com as signer and jane@example.com as approver"
2. Get Document Details
Fetch comprehensive metadata for a document including recipients, fields, tokens, pricing, tags, and content-block references.
Tool:
PANDADOC_GET_DOCUMENT_DETAILS
Key parameters:
(required) -- the unique document identifier (e.g.,id
)BhVzRcxH9Z2LgfPPGXFUqa
Use this to check document status, inspect recipient completion, review field values, or gather metadata for reporting.
Example prompt: "Get the full details and status for PandaDoc document BhVzRcxH9Z2LgfPPGXFUqa"
3. Manage Contacts
Create new contacts or update existing ones in PandaDoc. Contacts are matched by email -- if a contact with the given email exists, it gets updated; otherwise, a new one is created.
Tool:
PANDADOC_CREATE_OR_UPDATE_CONTACT
Key parameters:
(required) -- contact email addressemail
,first_name
-- contact namelast_name
-- company namecompany
-- role/titlejob_title
-- phone numberphone
,street_address
,city
,state
,postal_code
-- address fieldscountry
Example prompt: "Create a PandaDoc contact for john.doe@example.com at Acme Corp as Software Engineer"
4. Organize with Folders
Create folders and move documents to organize your PandaDoc workspace.
Tools:
PANDADOC_CREATE_FOLDER, PANDADOC_LIST_DOCUMENT_FOLDERS, PANDADOC_MOVE_DOCUMENT_TO_FOLDER
For creating folders:
(required) -- folder namename
-- parent folder UUID for nested structuresparent_uuid
Example prompt: "Create a 'Q1 2026 Contracts' folder in PandaDoc and move document BhVzRcxH9Z to it"
5. Set Up Webhooks
Create webhook subscriptions to receive real-time notifications when document events occur.
Tool:
PANDADOC_CREATE_WEBHOOK
Key parameters:
(required) -- descriptive name for the webhookname
(required) -- endpoint URL for notificationsurl
(required) -- event types:triggers
,document_state_changed
,recipient_completed
, etc.document_updated
(default true) -- enable/disable the webhookactive
-- additional data to include:payload
,fields
,products
,metadata
,tokenspricing
Example prompt: "Set up a PandaDoc webhook to notify https://api.example.com/hooks when documents change state or recipients complete"
6. Create Templates
Create reusable templates from PDF files or from scratch with structured content blocks.
Tool:
PANDADOC_CREATE_TEMPLATE
Key parameters:
(required) -- template namename
-- path to PDF file for template creationfile_path
-- structured content object withcontent
andtitle
array for building from scratchblocks
-- template descriptiondescription
-- categorization tagstags
Example prompt: "Create a PandaDoc template called 'Standard NDA' from the nda-template.pdf file"
Known Pitfalls
- Unique recipient roles: PandaDoc API does not allow duplicate roles within a single document. Each recipient must have a unique
value (e.g.,role
,signer
,signer_2
,approver
).cc - Signing order consistency: If you specify
for any recipient, you must specify it for ALL recipients in the document. Partial ordering will cause errors.signing_order - File upload requirements: Either
(withfile
) ors3key
must be provided for document creation, not both. The URL must be publicly accessible HTTPS.url - Contact upsert behavior:
matches by email. If you need to update a contact's email itself, you must create a new contact and handle the old one separately.PANDADOC_CREATE_OR_UPDATE_CONTACT - Document ID format: Document IDs are alphanumeric strings (e.g.,
). They are returned when documents are created and can be found via the PandaDoc dashboard.BhVzRcxH9Z2LgfPPGXFUqa - Webhook event naming: Trigger event names must match exactly (e.g.,
, notdocument_state_changed
orstateChanged
). Check PandaDoc API docs for the complete list.state_changed - Folder operations require UUIDs: Moving documents requires both the document ID and the destination folder UUID. List folders first to get the correct UUID.
- Template content blocks: When creating templates from scratch, the
array must contain valid content block objects per PandaDoc's schema. Check their API documentation for supported block types.blocks
Quick Reference
| Tool Slug | Description |
|---|---|
| Create a document from PDF/DOCX/RTF with recipients |
| Get full document metadata, status, and fields |
| Create or update a contact by email |
| Create a folder for document organization |
| List all document folders |
| Move a document to a specific folder |
| Set up event notification webhooks |
| Create a reusable document template |
Powered by Composio