PandaDoc
documents_list
Paginated document listing with structured filters. Examples: 'list 50 Draft docs' · 'documents infolder abc-123 tagged onboarding' · 'page 3 of my docs' For natural-language queries, prefer ``ai_search`` if available.
Remote svitlana-omelia/pandadoc
Remote (network-hosted)
Other tools also called documents_list?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"q": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filters documents by name or reference number (stored on the template level)."
},
"tag": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null,
"description": "Filters documents by tag."
},
"page": {
"anyOf": [
{
"type": "integer",
"minimum": 1
},
{
"type": "null"
}
],
"default": null,
"description": "Paginates the search result. Increase value to get the next page of results."
},
"count": {
"anyOf": [
{
"type": "integer",
"maximum": 100,
"minimum": 1
},
{
"type": "null"
}
],
"default": null,
"description": "Limits the size of the response. Default is 50 documents, maximum is 100 documents."
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filters documents by status. Valid values: Draft, Sent, Completed, Uploaded, Error, Viewed, Waiting for Approval, Approved, Rejected, Waiting for Payment, Paid, Expired, Declined, External Review."
},
"folder_uuid": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filters by the folder where the documents are stored."
}
}
}