action docusign_documents_get_template_documents { label: "Gets a list of documents associated with a template." description: "Retrieves a list of documents associated with the specified template." provider: docusign method: GET path: "/v2.1/accounts/{accountId}/templates/{templateId}/documents" encoding: json input: { type: "object" properties: { accountId: { type: "string" } include_agreement_type: { type: "string" } include_is_edited: { type: "string" } include_tabs: { type: "string" } templateId: { type: "string" } } required: ["accountId", "templateId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }