action docusign_brand_get_brand { label: "Gets information about a brand." description: "This method returns details about an account [brand](/docs/esign-rest-api/esign101/concepts/branding/).\n\n**Note:** Branding for either signing or sending must be enabled for the account (`canSelfBrandSend` , `canSelfBrandSign`, or both of these account settings must be **true**)." provider: docusign method: GET path: "/v2.1/accounts/{accountId}/brands/{brandId}" encoding: json input: { type: "object" properties: { accountId: { type: "string" } brandId: { type: "string" } include_external_references: { type: "string" } include_logos: { type: "string" } } required: ["accountId", "brandId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }