action docusign_brands_get_group_brands { label: "Gets the brand information for a group." description: "This method returns information about the brands associated with a group." provider: docusign method: GET path: "/v2.1/accounts/{accountId}/groups/{groupId}/brands" encoding: json input: { type: "object" properties: { accountId: { type: "string" } groupId: { type: "string" } } required: ["accountId", "groupId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }