action docusign_custom_fields_get_template_custom_fields { label: "Gets the custom document fields from a template." description: "Retrieves the custom document field information from an existing template." provider: docusign method: GET path: "/v2.1/accounts/{accountId}/templates/{templateId}/custom_fields" encoding: json input: { type: "object" properties: { accountId: { type: "string" } templateId: { type: "string" } } required: ["accountId", "templateId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }