action docusign_document_fields_get_template_document_fields { label: "Gets the custom document fields for a an existing template document." description: "This method retrieves the custom document fields for an existing template document." provider: docusign method: GET path: "/v2.1/accounts/{accountId}/templates/{templateId}/documents/{documentId}/fields" encoding: json input: { type: "object" properties: { accountId: { type: "string" } documentId: { type: "string" } templateId: { type: "string" } } required: ["accountId", "documentId", "templateId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }