action docusign_consumer_disclosure_get_consumer_disclosure_envelope_id_recipien { label: "Gets the default Electronic Record and Signature Disclosure for an envelope." description: "Retrieves the default, HTML-formatted Electronic Record and Signature Disclosure (ERSD) for the envelope that you specify. \n\nThis is the default ERSD disclosure that Docusign provides for the convenience of U.S.-based customers only. This default disclosure is only valid for transactions between U.S.-based parties.\n\nTo set the language of the disclosure that you want to retrieve, use the optional `langCode` query parameter." provider: docusign method: GET path: "/v2.1/accounts/{accountId}/envelopes/{envelopeId}/recipients/{recipientId}/consumer_disclosure" encoding: json input: { type: "object" properties: { accountId: { type: "string" } envelopeId: { type: "string" } langCode: { type: "string" } recipientId: { type: "string" } } required: ["accountId", "envelopeId", "recipientId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }