PandaDoc
documents_status_change
Manually change a document's status. Only these transitions are allowed: Completed, Paid, Expired, or Declined. Status changes are restricted based on the current document status. Other statuses (such as Sent, Viewed, Approved) are set automatically by the system and cannot be set with this tool.
Remote svitlana-omelia/pandadoc
Remote (network-hosted)
Other tools also called documents_status_change?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"note": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional note for the status change"
},
"status": {
"type": "string",
"description": "Target status. Valid values: Completed, Paid, Expired, Declined."
},
"document_id": {
"type": "string",
"description": "Document ID"
},
"notify_recipients": {
"type": "boolean",
"default": false,
"description": "Whether to notify recipients of the status change"
}
}
}