action docusign_email_settings_get_email_settings { label: "Gets the email setting overrides for an envelope." description: "Retrieves the email override settings for the specified envelope." provider: docusign method: GET path: "/v2.1/accounts/{accountId}/envelopes/{envelopeId}/email_settings" encoding: json input: { type: "object" properties: { accountId: { type: "string" } envelopeId: { type: "string" } } required: ["accountId", "envelopeId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }