← Tools Reference

PandaDoc

PandaDoc integration (Productivity, Communication). Imported from open-connector.

API key12 toolshttps://api.pandadoc.com
GET
pandadoc_list_contacts
List contacts in the connected PandaDoc workspace, optionally filtered by email.

/public/v1/contacts

1 parameter
ParamTypeRequiredDescription
emailstringoptionalOnly return contacts with this email address.
DELETE
pandadoc_delete_contact
Delete a contact from the connected PandaDoc workspace.

/public/v1/contacts/{contact_id}

1 parameter
ParamTypeRequiredDescription
contact_idstringrequiredThe PandaDoc contact identifier.
GET
pandadoc_list_templates
List templates available in the connected PandaDoc workspace.

/public/v1/templates

9 parameters
ParamTypeRequiredDescription
pageintegeroptionalPage number to return.
countintegeroptionalNumber of results to return.
qstringoptionalSearch query.
idstringoptionalFilter locally by template ID.
sharedbooleanoptionalWhether to include shared templates.
deletedbooleanoptionalWhether to include deleted templates.
folder_uuidstringoptionalFolder UUID filter.
fieldsarrayoptionalFields to include in the PandaDoc response.
tagarrayoptionalTags to filter by.
GET
pandadoc_get_template_details
Retrieve detailed metadata for a specific PandaDoc template.

/public/v1/templates/{template_id}/details

1 parameter
ParamTypeRequiredDescription
template_idstringrequiredThe PandaDoc template identifier.
POST
pandadoc_create_template
Create a PandaDoc template from structured content or from a transit file upload.

/public/v1/templates

5 parameters
ParamTypeRequiredDescription
namestringrequiredThe template name.
descriptionstringoptionalOptional description of the template.
tagsarrayoptionalTags assigned to the template.
contentobjectoptionalA loose JSON object returned by the PandaDoc API.
fileobjectoptionalPDF file uploaded through POST /api/files.
DELETE
pandadoc_delete_template
Delete a template from the connected PandaDoc workspace.

/public/v1/templates/{template_id}

1 parameter
ParamTypeRequiredDescription
template_idstringrequiredThe PandaDoc template identifier.
GET
pandadoc_list_document_folders
List document folders in the connected PandaDoc workspace.

/public/v1/documents/folders

3 parameters
ParamTypeRequiredDescription
pageintegeroptionalPage number to return.
countintegeroptionalNumber of results to return.
parent_uuidstringoptionalParent folder UUID.
POST
pandadoc_create_folder
Create a new document folder in PandaDoc.

/public/v1/documents/folders

2 parameters
ParamTypeRequiredDescription
namestringrequiredThe folder name.
parent_uuidstringoptionalParent folder UUID.
POST
pandadoc_create_document_from_file
Create a PandaDoc document from a PDF file reference and document metadata.

/public/v1/documents

8 parameters
ParamTypeRequiredDescription
namestringrequiredThe document name.
fileobjectrequiredPDF, DOCX, or RTF file uploaded through POST /api/files.
recipientsarrayoptionalDocument recipients.
tokensarrayoptionalDocument tokens.
fieldsobjectoptionalA loose JSON object returned by the PandaDoc API.
metadataobjectoptionalA loose JSON object returned by the PandaDoc API.
tagsarrayoptionalTags assigned to the document.
folder_uuidstringoptionalTarget folder UUID.
GET
pandadoc_get_document_details
Retrieve detailed metadata for a specific PandaDoc document.

/public/v1/documents/{document_id}/details

1 parameter
ParamTypeRequiredDescription
document_idstringrequiredThe PandaDoc document identifier.
POST
pandadoc_create_webhook
Create a PandaDoc webhook subscription for document lifecycle events.

/public/v1/webhook-subscriptions

3 parameters
ParamTypeRequiredDescription
namestringoptionalWebhook name.
urlstringoptionalWebhook destination URL.
triggersarrayoptionalPandaDoc event trigger names.
POST
pandadoc_create_document_attachment
Upload an attachment file to a draft PandaDoc document.

/public/v1/documents/{document_id}/attachments

2 parameters
ParamTypeRequiredDescription
document_idstringrequiredThe PandaDoc document identifier.
fileobjectoptionalAttachment file uploaded through POST /api/files.