action docusign_brands_get_brands { label: "Gets a list of brands." description: "This method returns details about all of the [brands](/docs/esign-rest-api/esign101/concepts/branding/) associated with an account,\nincluding the default brand profiles.\n\nEither or both of the following settings must be enabled for the account to use this method:\n\n- `canSelfBrandSign`\n- `canSelfBrandSend`\n\n### Related topics\n\n- [How to create a brand](/docs/esign-rest-api/how-to/create-brand/)\n- [How to apply a brand to an envelope](/docs/esign-rest-api/how-to/apply-brand-to-envelope/)\n" provider: docusign method: GET path: "/v2.1/accounts/{accountId}/brands" encoding: json input: { type: "object" properties: { accountId: { type: "string" } exclude_distributor_brand: { type: "string" } include_logos: { type: "string" } } required: ["accountId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }