action docusign_consumer_disclosure_get_consumer_disclosure { label: "Gets the default Electronic Record and Signature Disclosure for an account." description: "Retrieves the default, HTML-formatted Electronic Record and Signature Disclosure (ERSD) associated with the account. \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}/consumer_disclosure" encoding: json input: { type: "object" properties: { accountId: { type: "string" } langCode: { type: "string" } } required: ["accountId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }