action vtex_brand { label: "Get Brand" description: "Retrieves a specific Brand by its ID. \n## Response body example \n \n```json \n{ \n \"id\": 7000000, \n \"name\": \"Pedigree\", \n \"isActive\": true, \n \"title\": \"Pedigree\", \n \"metaTagDescription\": \"Pedigree\", \n \"imageUrl\": null \n} \n```" provider: vtex method: GET path: "/api/catalog_system/pvt/brand/{brandId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } brandId: { type: "string" } } required: ["Accept", "Content-Type", "brandId"] additionalProperties: false } output: { type: "object" description: "Object containing Brand information." required: ["id", "imageUrl", "isActive", "metaTagDescription", "name", "title"] properties: { id: { type: "integer" description: "Brand's unique numerical identifier." } imageUrl: { type: "string" description: "URL of the brand's image." } isActive: { type: "boolean" description: "Defines if the brand is active (`true`) or not (`false`)." } metaTagDescription: { type: "string" description: "Meta Description for the Brand page. A brief description of the brand, displayed by search engines. Since search engines can only display less than 150 characters, we recommend not exceeding this character limit when creating the description." } name: { type: "string" description: "Brand name." } title: { type: "string" description: "Meta Title for the Brand page." } } } }