action docusign_consumer_disclosure_get_consumer_disclosure_lang_code { label: "Gets the Electronic Record and Signature Disclosure for an account." description: "Retrieves the HTML-formatted Electronic Record and Signature Disclosure (ERSD) associated with the account. \n\nTo set the language of the disclosure that you want to retrieve, use the optional `langCode` query parameter.\n\n**Note:** The text of the default disclosure is always in English, but if you are using a custom disclosure and have created versions of it in different signer languages, you can use the `langCode` parameter to specify the signer language version that you want to retrieve. " provider: docusign method: GET path: "/v2.1/accounts/{accountId}/consumer_disclosure/{langCode}" encoding: json input: { type: "object" properties: { accountId: { type: "string" } langCode: { type: "string" } } required: ["accountId", "langCode"] additionalProperties: false } output: { type: "object" additionalProperties: true } }