action docusign_comments_get_comments_transcript { label: "Gets a PDF transcript of all of the comments in an envelope." description: "Retrieves a PDF file containing all of the comments that senders and recipients have added to the documents in an envelope.\n\nThe response body of this method is the PDF file as a byte\nstream.\n\n\n**Note:** Comments are disabled by default. To use the comments feature, an account administrator must enable comments on the account (in the `accountSettingsInformation` object, set the `enableSigningExtensionComments` property to **true**). " provider: docusign method: GET path: "/v2.1/accounts/{accountId}/envelopes/{envelopeId}/comments/transcript" encoding: json input: { type: "object" properties: { accountId: { type: "string" } encoding: { type: "string" } envelopeId: { type: "string" } } required: ["accountId", "envelopeId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }