action vtex_get_api_catalog_pvt_category_category_id { label: "Get Category by ID" description: "Retrieves general information about a Category. \n## Response body example \n \n```json \n{ \n \"Id\": 1, \n \"Name\": \"Home Appliances\", \n \"FatherCategoryId\": null, \n \"Title\": \"Home Appliances\", \n \"Description\": \"Discover our range of home appliances. Find smart vacuums, kitchen and laundry appliances to suit your needs. Order online now.\", \n \"Keywords\": \"Kitchen, Laundry, Appliances\", \n \"IsActive\": true, \n \"LomadeeCampaignCode\": \"\", \n \"AdWordsRemarketingCode\": \"\", \n \"ShowInStoreFront\": true, \n \"ShowBrandFilter\": true, \n \"ActiveStoreFrontLink\": true, \n \"GlobalCategoryId\": 3367, \n \"StockKeepingUnitSelectionMode\": \"LIST\", \n \"Score\": null, \n \"LinkId\": \"Alimentacao\", \n \"HasChildren\": true \n} \n```" provider: vtex method: GET path: "/api/catalog/pvt/category/{categoryId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } categoryId: { type: "integer" } } required: ["Accept", "Content-Type", "categoryId"] additionalProperties: false } output: { type: "object" required: ["ActiveStoreFrontLink", "AdWordsRemarketingCode", "Description", "FatherCategoryId", "GlobalCategoryId", "HasChildren", "Id", "IsActive", "Keywords", "LinkId", "LomadeeCampaignCode", "Name", "Score", "ShowBrandFilter", "ShowInStoreFront", "StockKeepingUnitSelectionMode", "Title"] properties: { ActiveStoreFrontLink: { type: "boolean" description: "Defines if the Category has an active link on the website (`true`) or not (`false`)." } AdWordsRemarketingCode: { type: "string" description: "This is a legacy field. Do not take this information into consideration." } Description: { type: "string" description: "Describes details about the category." } FatherCategoryId: { type: "integer" description: "ID of the father category, apply in case of category and subcategory." } GlobalCategoryId: { type: "integer" description: "Google Global Category ID." } HasChildren: { type: "boolean" description: "Defines if the category has child categories (`true`) or not (`false`)." } Id: { type: "integer" description: "Category ID." } IsActive: { type: "boolean" description: "Shows if the category is active (`true`) or not (`false`)." } Keywords: { type: "string" description: "Substitutes words for the category." } LinkId: { type: "string" description: "Text Link." } LomadeeCampaignCode: { type: "string" description: "This is a legacy field. Do not take this information into consideration." } Name: { type: "string" description: "Category name." } Score: { type: "integer" description: "Score for search ordination." } ShowBrandFilter: { type: "boolean" description: "Defines if the category has brand filter (`true`) or not (`false`)." } ShowInStoreFront: { type: "boolean" description: "Defines if the category is shown on side and upper menu (`true`) or not (`false`)." } StockKeepingUnitSelectionMode: { type: "string" description: "Defines how the SKU will be exhibited." } Title: { type: "string" description: "Category page title." } } } }