GetCategoryTree
Definition
Use this call to retrieve the list of all product categories in the system.
Request URI: https://api.sellercenter.lazada.sg?Action=GetCategoryTree
Parameters
Field | Type | Description |
---|---|---|
Action | string | GetCategoryTree Name of the API that is to be called. Mandatory. |
Format | string | The response format, with XML as the default. Can be XML or JSON. Optional. |
Timestamp | datetime | The current time in ISO8601 format (e.g., Timestamp=2016-04-01T10:00:00+02:00 for Berlin). Mandatory. |
UserID | string | The ID of the user making the call. Mandatory. |
Version | string | The API version against which this call is to be executed. The current version is "1.0". Mandatory. |
Signature | string | The cryptographic signature, authenticating the request. You must create this value by computing the SHA256 hash of the request, using the API key of the user specified in the UserID parameter. Mandatory. |
Code sample
//you may find that categoryId of leaf node is useful for creating product
GetCategoryTree getCategoryTree = new GetCategoryTree();
try {
GetCategoryTreeResponse response = getCategoryTree.execute();
List<Category> categories = response.getBody();
for(Category category: categories) {
for(Category leaf: category.getLeaves()) {
System.out.println(leaf.getCategoryId());
}
}
} catch (LazadaException e) {
System.out.println(e.getResponseStr());
}
Response
The response body is composed of the Categories collection, recursively containing Category resources, each of which is composed of the following fields:
Name | Type | Description |
---|---|---|
CategoryId | integer | Category ID |
Name | string | The name of the category |
Children | node | List of all child categories (category resources) |
attributeType | string | Type of this attribute. Two possible values: 1. normal - means that this attribute belongs to the product 2. sku - means that this attribute belongs to the SKU |
inputType | string | Type of the attribute value |
label | string | Label displayed on the UI for this attribute |
name | string | Name of this attribute. It's value is used as the key of this attribute in product creation request. |
mandatory | integer | Whether this attribute is mandatory. If its value is 1, this attribute is mandatory. Otherwise not. |
options | node | Valid values for this attribute. Useful for an attribute whose inputType is singleSelect or multiSelect. |
Result sample
A success result sample is as follows.
<?xml version="1.0" encoding="UTF-8"?>
<SuccessResponse>
<Head>
<RequestId/>
<RequestAction>GetCategoryAttributes</RequestAction>
<ResponseType>Attributes</ResponseType>
<Timestamp>2015-07-01T11:11:11+0000</Timestamp>
</Head>
<Body>
[{
"categoryId":10000012,
"name":"Books"
},
{
"categoryId":10000009,
"name":"Phone"
},
{
"categoryId":10000000,
"name":"autoTest first category"
},
{
"categoryId":10000016,
"children":[
{
"categoryId":10000019,
"children":[{
"categoryId":10000020,
"name":"Games Desktop"
}],
"name":"Desktop"
},
{
"categoryId":10000017,
"name":"Laptop"
}
],
"name":"Computers"
},
{
"categoryId":10000018,
"name":"TV"
}]
</Body>
</SuccessResponse>
{
"SuccessResponse": {
"Body": [
{
"attributeType": "normal",
"inputType": "text",
"label": "Name",
"mandatory": 1,
"name": "name",
"options": []
},
{
"attributeType": "normal",
"inputType": "richText",
"label": "Highlights",
"mandatory": 1,
"name": "short_description",
"options": []
},
{
"attributeType": "normal",
"inputType": "richText",
"label": "Product Description",
"mandatory": 0,
"name": "description",
"options": []
},
{
"attributeType": "normal",
"inputType": "text",
"label": "Video URL",
"mandatory": 0,
"name": "video",
"options": []
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "Brand",
"mandatory": 1,
"name": "brand",
"options": []
},
{
"attributeType": "normal",
"inputType": "multiSelect",
"label": "Phone Features",
"mandatory": 0,
"name": "phone_features",
"options": [
{
"name": "Dustproof / Waterproof"
},
{
"name": "Expandable Memory"
},
{
"name": "Fingerprint Sensor"
},
{
"name": "Touchscreen"
},
{
"name": "GPS"
}
]
},
{
"attributeType": "normal",
"inputType": "text",
"label": "Model",
"mandatory": 1,
"name": "model",
"options": []
},
{
"attributeType": "sku",
"inputType": "multiSelect",
"label": "Color Family",
"mandatory": 1,
"name": "color_family",
"options": [
{
"name": "Black"
},
{
"name": "Beige"
},
{
"name": "Blue"
},
{
"name": "Brown"
},
{
"name": "Gold"
},
{
"name": "Green"
},
{
"name": "Grey"
},
{
"name": "Multicolor"
},
{
"name": "Olive"
},
{
"name": "Orange"
},
{
"name": "Pink"
},
{
"name": "Purple"
},
{
"name": "Red"
},
{
"name": "Silver"
},
{
"name": "Turquoise"
},
{
"name": "Violet"
},
{
"name": "White"
},
{
"name": "Yellow"
},
{
"name": "Clear"
},
{
"name": "Apricot"
},
{
"name": "Aqua"
},
{
"name": "Avocado"
},
{
"name": "Blueberry"
},
{
"name": "Blush Pink"
},
{
"name": "Bronze"
},
{
"name": "Charcoal"
},
{
"name": "Cherry"
},
{
"name": "Chestnut"
},
{
"name": "Chili Red"
},
{
"name": "Chocolate"
},
{
"name": "Cinnamon"
},
{
"name": "Coffee"
},
{
"name": "Cream"
},
{
"name": "Floral"
},
{
"name": "Galaxy"
},
{
"name": "Hotpink"
},
{
"name": "Ivory"
},
{
"name": "Jade"
},
{
"name": "Khaki"
},
{
"name": "Lavender"
},
{
"name": "Magenta"
},
{
"name": "Mahogany"
},
{
"name": "Mango"
},
{
"name": "Maroon"
},
{
"name": "Neon"
},
{
"name": "Tan"
},
{
"name": "Watermelon red"
},
{
"name": "Lake Blue"
},
{
"name": "Lemon Yellow"
},
{
"name": "Army Green"
},
{
"name": "Rose"
},
{
"name": "Dark blue"
},
{
"name": "Camel"
},
{
"name": "Burgundy"
},
{
"name": "Light blue"
},
{
"name": "Champagne"
},
{
"name": "Light green"
},
{
"name": "Dark Brown"
},
{
"name": "Navy Blue"
},
{
"name": "Light Grey"
},
{
"name": "Off White"
},
{
"name": "Light yellow"
},
{
"name": "Emerald Green"
},
{
"name": "Fluorescent Green"
},
{
"name": "Fluorescent Yellow"
},
{
"name": "Deep green"
},
{
"name": "Rose Gold"
},
{
"name": "Neutral"
},
{
"name": "…"
},
{
"name": "Peach"
}
]
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "PPI",
"mandatory": 0,
"name": "pixel_ppi",
"options": [
{
"name": "300-400 PPI"
},
{
"name": "400-500 PPI"
},
{
"name": "200-300 PPI"
},
{
"name": "Above 500 PPI"
},
{
"name": "Below 200 PPI"
}
]
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "Processor Type",
"mandatory": 0,
"name": "processor_type",
"options": [
{
"name": "Other"
},
{
"name": "Single-core"
},
{
"name": "Dual-core"
},
{
"name": "Tri Core"
},
{
"name": "Quad-core"
},
{
"name": "Six Core"
},
{
"name": "Four Core"
},
{
"name": "Octa-core"
},
{
"name": "Hexa-core"
},
{
"name": "Ten Core"
},
{
"name": "Deca-core"
},
{
"name": "Not Specified"
}
]
},
{
"attributeType": "normal",
"inputType": "numeric",
"label": "Screen Size (inches)",
"mandatory": 1,
"name": "display_size_mobile",
"options": []
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "Screen Type",
"mandatory": 0,
"name": "screen_type",
"options": [
{
"name": "AMOLED"
},
{
"name": "IPS LCD"
},
{
"name": "TFT LCD"
},
{
"name": "LCD"
},
{
"name": "OLED"
}
]
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "Video Resolution",
"mandatory": 0,
"name": "video_resolution",
"options": [
{
"name": "1080p"
},
{
"name": "2160p"
},
{
"name": "720p"
},
{
"name": "480p"
},
{
"name": "SVGA"
}
]
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "Operating System Version",
"mandatory": 1,
"name": "operating_system_version",
"options": [
{
"name": "Marshmallow"
},
{
"name": "Windows 10"
},
{
"name": "Windows 10 & Android 5.1 Lollipop"
},
{
"name": "Android 5.1 Lollipop"
},
{
"name": "Windows XP 64-Bit Edition"
},
{
"name": "Windows XP"
},
{
"name": "Windows Server 2003"
},
{
"name": "Jelly Bean"
},
{
"name": "Windows 2000"
},
{
"name": "Lolipop"
},
{
"name": "Froyo"
},
{
"name": "KitKat"
},
{
"name": "Donut"
},
{
"name": "Cupcake"
},
{
"name": "Windows Vista"
},
{
"name": "Honeycomb"
},
{
"name": "Ice Cream Sandwich"
},
{
"name": "Windows 8"
},
{
"name": "Windows Server 2012"
},
{
"name": "Gingerbread"
},
{
"name": "Windows 7"
},
{
"name": "Eclair"
},
{
"name": "Windows Server 2003 R2"
},
{
"name": "Windows Server 2008 R2"
},
{
"name": "Windows Server 2008"
},
{
"name": "iOS 6"
},
{
"name": "iOS 8"
},
{
"name": "iOS 7"
},
{
"name": "iOS 9"
},
{
"name": "OS X Mountain Lion"
},
{
"name": "OX X Mavericks"
},
{
"name": "OS X El Capitan"
},
{
"name": "OS X Yosemite"
},
{
"name": "Android 7.1 Nougat"
},
{
"name": "Symbian"
},
{
"name": "Not Specified"
}
]
},
{
"attributeType": "normal",
"inputType": "multiSelect",
"label": "Network Connections",
"mandatory": 0,
"name": "network_connections",
"options": [
{
"name": "3.5G - HSDPA"
},
{
"name": "3G"
},
{
"name": "4G"
},
{
"name": "2G"
}
]
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "RAM memory",
"mandatory": 0,
"name": "ram_memory",
"options": [
{
"name": "Other"
},
{
"name": "8GB"
},
{
"name": "16GB"
},
{
"name": "6GB"
},
{
"name": "1GB"
},
{
"name": "512MB & Under"
},
{
"name": "2GB"
},
{
"name": "4GB"
},
{
"name": "3GB"
}
]
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "Camera Back",
"mandatory": 0,
"name": "camera_back",
"options": [
{
"name": "16 to 20MP"
},
{
"name": "11 to 15MP"
},
{
"name": "1 to 5MP"
},
{
"name": "6 to 10MP"
},
{
"name": "No Camera"
},
{
"name": "21MP and up"
}
]
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "Camera Front",
"mandatory": 0,
"name": "camera_front",
"options": [
{
"name": "2-3MP"
},
{
"name": "8 MP"
},
{
"name": "No Camera"
},
{
"name": "1-2 MP"
},
{
"name": "3-4 MP"
},
{
"name": "5-6 MP"
},
{
"name": "7 MP and up"
},
{
"name": "0-1 MP"
}
]
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "Operating System",
"mandatory": 1,
"name": "operating_system",
"options": [
{
"name": "Windows"
},
{
"name": "Linux"
},
{
"name": "Windows XP Professional"
},
{
"name": "Mac OS X"
},
{
"name": "Free DOSÂ "
},
{
"name": "Android"
},
{
"name": "iOS"
},
{
"name": "No OS"
},
{
"name": "Other"
},
{
"name": "Windows XP"
},
{
"name": "Windows 7"
},
{
"name": "Windows Phone OS"
},
{
"name": "Symbian"
},
{
"name": "Blackberry OS"
},
{
"name": "Chrome OS"
},
{
"name": "Windows 8"
},
{
"name": "Windows 8.1"
},
{
"name": "Maverick"
},
{
"name": "DOS"
},
{
"name": "X Mavericks"
},
{
"name": "Android 4.1 Jelly Bean"
},
{
"name": "Android 4.2 Jelly Bean"
},
{
"name": "Android 4.3 Jelly Bean"
},
{
"name": "Android 4.4 KitKat"
},
{
"name": "Android 4.1 Jellybean"
},
{
"name": "Android 4.2.2 Jellybean"
},
{
"name": "Android 4.0 Ice Cream Sandwich"
},
{
"name": "Android 4.1.2 Jellybean"
},
{
"name": "Android 4.0.4 Ice Cream Sandwich"
},
{
"name": "SGP"
},
{
"name": "Android 2.3.5 Gingerbread"
},
{
"name": "iOS 5"
},
{
"name": "iOS 7"
},
{
"name": "Blackberry OS 10"
},
{
"name": "Blackberry OS 10.2"
},
{
"name": "Android 4.1.1 Jellybean"
},
{
"name": "Android 4.3 Jellybean"
},
{
"name": "Android 4.2 Jellybean"
},
{
"name": "Android 2.3 Gingerbread"
},
{
"name": "Android 4.2.2 Jelly Bean"
},
{
"name": "Android 4.1.2 Jelly Bean"
},
{
"name": "Android 4.0.3 Ice Cream Sandwich"
},
{
"name": "BlackBerry 10.2"
},
{
"name": "Android 4.4.2 Kitkat"
},
{
"name": "Windows 7.5"
},
{
"name": "Android 4.1.1 Jelly Bean"
},
{
"name": "Android 4.2.1 Jelly Bean"
},
{
"name": "iOS 4"
},
{
"name": "Android 2.3.4 Gingerbread"
},
{
"name": "iOS 6"
},
{
"name": "BlackBerry 7.0"
},
{
"name": "iOS 3"
},
{
"name": "Android 2.1 Eclair"
},
{
"name": "Android 1.6 Donut"
},
{
"name": "Android 2.2 Froyo"
},
{
"name": "Android 1.5 Cupcake"
},
{
"name": "Android 2.3.6 Gingerbread"
},
{
"name": "BlackBerry 10.2.1"
},
{
"name": "Nokia OS Series 30+"
},
{
"name": "Nokia OS"
},
{
"name": "Symbian OS"
},
{
"name": "Windows Phone 8.1"
},
{
"name": "Nokia Asha software Platform 1.2"
},
{
"name": "BlackBerry OS 7.1"
},
{
"name": "BlackBerry OS 7"
},
{
"name": "Maemo 5"
},
{
"name": "Microsoft Windows Mobile 6.1 Professional"
},
{
"name": "Microsoft Windows Mobile 6.5.3 Professional"
},
{
"name": "Nokia Asha software platform 1.0"
},
{
"name": "BlackBerry OS 10.2.1"
},
{
"name": "Android 2.3.3 Gingerbread"
},
{
"name": "Nokia Asha"
},
{
"name": "Android 4.4 (KitKat)"
},
{
"name": "Nokia X Software Platform"
},
{
"name": "Microsoft Windows Phone 8.1"
},
{
"name": "Android OS 4.4 Kitkat"
},
{
"name": " Android v4.3 (Jelly Bean)"
},
{
"name": "Android v4.1.2 (Jelly Bean"
},
{
"name": "Android v4.0.3 (Ice Cream Sandwich)"
},
{
"name": "Android v4.1.2 (Jelly Bean)"
},
{
"name": " Android v4.2.2 (Jelly Bean)"
},
{
"name": "iOS 8"
},
{
"name": "Android 3.2 Honeycomb"
},
{
"name": "iOS 5.1"
},
{
"name": "Windows 8.1 Pro"
},
{
"name": "Nokia Asha software platform 1.1.1"
},
{
"name": "Windows 8 Pro"
},
{
"name": "BlackBerry 10"
},
{
"name": "Windows 7.5 Mango"
},
{
"name": "Android 4.4.3 Kitkat"
},
{
"name": "Android 4.4.4 KitKat"
},
{
"name": "Android 4.3.9 Jelly Bean"
},
{
"name": "Firefox 1.3"
},
{
"name": "Nokia Asha Software Platform"
},
{
"name": "Mac OS"
},
{
"name": "BlackBerry OS 7.0"
},
{
"name": "OS X"
},
{
"name": "OS X Yosemite"
},
{
"name": "Ubuntu"
},
{
"name": "Remix OS"
},
{
"name": "Windows 10"
},
{
"name": "Windows 7 Professional"
},
{
"name": " Android OS, v4.2.2 (Jelly Bean)"
},
{
"name": "Windows 7 Home Premium"
},
{
"name": "Android 1.6 (Donut)"
},
{
"name": "Android 2.1"
},
{
"name": "Android 2.2"
},
{
"name": "Android 2.3"
},
{
"name": "Android 3.0"
},
{
"name": "Android 3.0 Honeycomb"
},
{
"name": "Android 3.2"
},
{
"name": "android os"
},
{
"name": "Android 4"
},
{
"name": "v4.2 (jelly bean)"
},
{
"name": "Android 4.0"
},
{
"name": "Android 4.0 Ic"
},
{
"name": "Android 4.0 Ice Cream"
},
{
"name": "Android 4.0.3"
},
{
"name": "Android 4.0.4"
},
{
"name": "Android 4.1"
},
{
"name": "Android 4.2.2"
},
{
"name": "Android 4.3 Jelly"
},
{
"name": "Android OS 4.2.1 (Jelly Bean)"
},
{
"name": "Android KitKat 4.4"
},
{
"name": "Android OS v4.0"
},
{
"name": "Android OS v1.6 (Donut)"
},
{
"name": "Android OS, v2.2 (Froyo)"
},
{
"name": "Android OS, v2.3 (Gingerbread)"
},
{
"name": "Android OS, v2.3.5 (Gingerbread)"
},
{
"name": "Android OS, v2.3.6 (Gingerbread), "
},
{
"name": "Android OS, v2.3.7 (Gingerbread)"
},
{
"name": "Android OS, v4.0.3 (Ice Cream Sandwich)"
},
{
"name": "Android OS, v4.0.4 Ice Cream Sandwich"
},
{
"name": "Android OS, v4.1 (Jelly Bean)"
},
{
"name": "Android OS, v4.1.1 (Jelly Bean)"
},
{
"name": "Android OS, v4.1.2 (Jelly Bean)"
},
{
"name": "Android OS, v4.2 (Jelly Bean)"
},
{
"name": "Android OS, v4.3 (Jelly Bean)"
},
{
"name": "Android OS, v4.4 (KitKat)"
},
{
"name": "Android OS, v4.4.2 (KitKat)"
},
{
"name": "Android v4.2"
},
{
"name": "Android v4.4"
},
{
"name": "Asha S40"
},
{
"name": "Bada OS 1.2"
},
{
"name": "BlackBerry 10 OS"
},
{
"name": "BlackBerry 10.2 OS"
},
{
"name": "BlackBerry 7"
},
{
"name": "BlackBerry 7.1"
},
{
"name": "BlackBerry OS 5"
},
{
"name": "Blackber"
},
{
"name": "CE 6.0 Core"
},
{
"name": "Firefox"
},
{
"name": "FreeDOS"
},
{
"name": "Google Android 4.1 (Jelly Bean)"
},
{
"name": "Mac OS X Mountain Lion"
},
{
"name": "Mac OS X v10.5.8"
},
{
"name": "Meego"
},
{
"name": "Microsoft Windows CE 6.0 Core Version"
},
{
"name": "Microsoft Windows Phone 7.5 Mango"
},
{
"name": "Microsoft Windows Phone 8"
},
{
"name": "No"
},
{
"name": "No info"
},
{
"name": "Nokia Asha 1.2"
},
{
"name": "Nokia X flatform 2.0 (Android 4.3)"
},
{
"name": "Proprietary"
},
{
"name": "RIM OS 7.0"
},
{
"name": "S30"
},
{
"name": "S40"
},
{
"name": "S40 Asha"
},
{
"name": "S60"
},
{
"name": "S60 5th Edition"
},
{
"name": "Samsung OS"
},
{
"name": "Samsung Proprietary"
},
{
"name": "Symbia"
},
{
"name": "Symbian 9.3"
},
{
"name": "Symbian Anna"
},
{
"name": "Symbian Belle"
},
{
"name": "Win 8.1 Bing"
},
{
"name": "Win7 Pro 64 downgrade W8"
},
{
"name": "Windows 7 Home Basic"
},
{
"name": "Windows 7 Home Basic 64-bit"
},
{
"name": "Windows 7 Home Premium 64"
},
{
"name": "Windows 7 Pro "
},
{
"name": "Windows 7 Pro 32-bit"
},
{
"name": "Windows 7 Professional SP1 64-bit"
},
{
"name": "Windows 7 Starter"
},
{
"name": "Windows 8 (Dock) Android 4.2 Jelly Bean (Tablet)"
},
{
"name": "Windows 8 64 bit SL"
},
{
"name": "Windows 8 Pro 64 bit (English Version)"
},
{
"name": "Windows 8 SL"
},
{
"name": "Windows 8 STD "
},
{
"name": "Windows 8 Single Language 64 bit (English Version)"
},
{
"name": "Windows 8 Single Language 64bit"
},
{
"name": "Windows 8, 7, Vista, XP, 2000 32/64 bit"
},
{
"name": "Windows Mobile 6.1 Pro"
},
{
"name": "Windows Mobile 6.5"
},
{
"name": "Windows Phone 7.5 Mango"
},
{
"name": "Windows Phone 8"
},
{
"name": "Windows RT"
},
{
"name": "Windows XP Home"
},
{
"name": "iOS 7.0.4"
},
{
"name": "iOS 8.0"
},
{
"name": "Android 5.0 Lollipop"
},
{
"name": "Android 5.1 Lollipop"
},
{
"name": "Android 6.0 Marshmallow"
},
{
"name": "Android 7.0 Nougat"
},
{
"name": "iOS 9"
},
{
"name": "iOS 10​"
},
{
"name": "WINDOWS VISTA BUSINESS"
},
{
"name": "Not Specified"
}
]
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "Slim Slots",
"mandatory": 0,
"name": "sim_slots",
"options": [
{
"name": "2"
},
{
"name": "3 and up"
},
{
"name": "1"
},
{
"name": "Single"
},
{
"name": "Dual"
}
]
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "Condition",
"mandatory": 0,
"name": "condition",
"options": [
{
"name": "New"
},
{
"name": "Refurbish"
},
{
"name": "Export"
},
{
"name": "Telco Set"
}
]
},
{
"attributeType": "sku",
"inputType": "singleSelect",
"label": "Storage Capacity",
"mandatory": 1,
"name": "storage_capacity_new",
"options": [
{
"name": "300MB"
},
{
"name": "128GB"
},
{
"name": "16GB"
},
{
"name": "115MB"
},
{
"name": "200GB"
},
{
"name": "60GB"
},
{
"name": "32GB"
},
{
"name": "5MB"
},
{
"name": "4GB"
},
{
"name": "768MB"
},
{
"name": "64GB"
},
{
"name": "11GB"
},
{
"name": "8GB"
},
{
"name": "5GB"
},
{
"name": "384MB"
},
{
"name": "128G"
},
{
"name": "1GB"
},
{
"name": "2GB"
},
{
"name": "500MB"
},
{
"name": "120GB"
},
{
"name": "128MB"
},
{
"name": "240GB"
},
{
"name": "6GB"
},
{
"name": "250GB"
},
{
"name": "18GB"
},
{
"name": "256GB"
},
{
"name": "80GB"
},
{
"name": "320GB"
},
{
"name": "288MB"
},
{
"name": "480GB"
},
{
"name": "16MB"
},
{
"name": "500GB"
},
{
"name": "640GB"
},
{
"name": "512GB"
},
{
"name": "160MB"
},
{
"name": "750GB"
},
{
"name": "100GB"
},
{
"name": "960GB"
},
{
"name": "10GB"
},
{
"name": "1TB"
},
{
"name": "1.5TB"
},
{
"name": "98MB"
},
{
"name": "2TB"
},
{
"name": "3TB"
},
{
"name": "10MB"
},
{
"name": "4TB"
},
{
"name": "256MB"
},
{
"name": "6TB"
},
{
"name": "160GB"
},
{
"name": "8TB"
},
{
"name": "478MB"
},
{
"name": "10TB"
},
{
"name": "237g/ml"
},
{
"name": "12TB"
},
{
"name": "15GB"
},
{
"name": "12TB and above"
},
{
"name": "Below 1GB"
},
{
"name": "32MB"
},
{
"name": "300GB"
},
{
"name": "24MB"
},
{
"name": "512MB"
},
{
"name": "20GB"
},
{
"name": "74mb"
},
{
"name": "1.5GB"
},
{
"name": "16TB"
},
{
"name": "576MB"
},
{
"name": "156MB"
},
{
"name": "96GB"
},
{
"name": "80MB"
},
{
"name": "30GB"
},
{
"name": "150MB"
},
{
"name": "30MB"
},
{
"name": "4MB"
},
{
"name": "40GB"
},
{
"name": "336MB"
},
{
"name": "320MB"
},
{
"name": "3GB"
},
{
"name": "12GB"
},
{
"name": "24GB"
},
{
"name": "70MB"
},
{
"name": "22MB"
},
{
"name": "8MB"
},
{
"name": "220GB"
},
{
"name": "64MB"
},
{
"name": "Not included hard drive"
},
{
"name": "Not Specified"
}
]
},
{
"attributeType": "sku",
"inputType": "text",
"label": "SellerSKU",
"mandatory": 1,
"name": "SellerSku",
"options": []
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "Warranty Type",
"mandatory": 1,
"name": "warranty_type",
"options": [
{
"name": "Local Manufacturer Warranty"
},
{
"name": "International Manufacturer Warranty"
},
{
"name": "Local Supplier Warranty"
},
{
"name": "No Warranty"
},
{
"name": "International Seller Warranty"
}
]
},
{
"attributeType": "normal",
"inputType": "singleSelect",
"label": "Warranty Period",
"mandatory": 0,
"name": "warranty",
"options": [
{
"name": "1 Month"
},
{
"name": "2 Months"
},
{
"name": "3 Months"
},
{
"name": "4 Months"
},
{
"name": "5 Months"
},
{
"name": "6 Months"
},
{
"name": "7 Months"
},
{
"name": "8 Months"
},
{
"name": "9 Months"
},
{
"name": "10 Months"
},
{
"name": "Life Time Warranty"
},
{
"name": "11 Months"
},
{
"name": "1 Year"
},
{
"name": "2 Years"
},
{
"name": "3 Years"
},
{
"name": "4 Years"
},
{
"name": "5 Years"
},
{
"name": "6 Years"
},
{
"name": "7 Years"
},
{
"name": "8 Years"
},
{
"name": "9 Years"
},
{
"name": "10 Years"
},
{
"name": "15 Years"
},
{
"name": "18 Months"
},
{
"name": "20 Years"
},
{
"name": "25 Years"
}
]
},
{
"attributeType": "sku",
"inputType": "text",
"label": "Barcode",
"mandatory": 0,
"name": "barcode_ean",
"options": []
},
{
"attributeType": "normal",
"inputType": "richText",
"label": "Warranty Policy (Malay)",
"mandatory": 0,
"name": "product_warranty",
"options": []
},
{
"attributeType": "sku",
"inputType": "numeric",
"label": "Quantity",
"mandatory": 0,
"name": "quantity",
"options": []
},
{
"attributeType": "normal",
"inputType": "text",
"label": "Name (Malay)",
"mandatory": 1,
"name": "name_ms",
"options": []
},
{
"attributeType": "normal",
"inputType": "richText",
"label": "Warranty Policy",
"mandatory": 0,
"name": "product_warranty_en",
"options": []
},
{
"attributeType": "sku",
"inputType": "numeric",
"label": "Price (calculated)",
"mandatory": 1,
"name": "price",
"options": []
},
{
"attributeType": "sku",
"inputType": "numeric",
"label": "Special Price",
"mandatory": 0,
"name": "special_price",
"options": []
},
{
"attributeType": "sku",
"inputType": "date",
"label": "Start date of promotion",
"mandatory": 0,
"name": "special_from_date",
"options": []
},
{
"attributeType": "sku",
"inputType": "date",
"label": "End date of promotion",
"mandatory": 0,
"name": "special_to_date",
"options": []
},
{
"attributeType": "normal",
"inputType": "richText",
"label": "Product Description (Malay)",
"mandatory": 0,
"name": "description_ms",
"options": []
},
{
"attributeType": "sku",
"inputType": "richText",
"label": "Free Items",
"mandatory": 0,
"name": "seller_promotion",
"options": []
},
{
"attributeType": "sku",
"inputType": "richText",
"label": "What's in the box",
"mandatory": 1,
"name": "package_content",
"options": []
},
{
"attributeType": "sku",
"inputType": "numeric",
"label": "Package Weight (Kg)",
"mandatory": 1,
"name": "package_weight",
"options": []
},
{
"attributeType": "sku",
"inputType": "numeric",
"label": "Package Length (cm)",
"mandatory": 1,
"name": "package_length",
"options": []
},
{
"attributeType": "sku",
"inputType": "numeric",
"label": "Package Width (cm)",
"mandatory": 1,
"name": "package_width",
"options": []
},
{
"attributeType": "sku",
"inputType": "numeric",
"label": "Package Height (cm)",
"mandatory": 1,
"name": "package_height",
"options": []
},
{
"attributeType": "sku",
"inputType": "text",
"label": "Dimensions (Length x Width x Height in cm)",
"mandatory": 0,
"name": "product_measures",
"options": []
},
{
"attributeType": "sku",
"inputType": "numeric",
"label": "Product Weight(kg)",
"mandatory": 0,
"name": "product_weight",
"options": []
},
{
"attributeType": "sku",
"inputType": "img",
"label": "Images",
"mandatory": 0,
"name": "__images__",
"options": []
},
{
"attributeType": "sku",
"inputType": "singleSelect",
"label": "Taxes",
"mandatory": 1,
"name": "tax_class",
"options": [
{
"name": "tax 6"
},
{
"name": "default"
}
]
},
{
"attributeType": "sku",
"inputType": "text",
"label": "Published Date",
"mandatory": 0,
"name": "published_date",
"options": []
}
],
"Head": {
"RequestAction": "GetCategoryAttributes",
"RequestId": "",
"ResponseType": "Attributes",
"Timestamp": "2017-02-03T12:12:57+08:00"
}
}
}
Error messages
No specific errors.
Updated about 7 years ago