action docusign_brand_logo_get_brand_logo { label: "Gets a brand logo." description: "This method returns a specific logo that is used in a brand.\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}/logos/{logoType}" encoding: json input: { type: "object" properties: { accountId: { type: "string" } brandId: { type: "string" } logoType: { type: "string" } } required: ["accountId", "brandId", "logoType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }