Update Category
Function
To update current categories information with open API.
透過open API更新既有分類資訊
URL
PUT <<api_domain>>/v1/categories/:category_id
Request Parameters
Parameter | Type | Description | Example |
|---|---|---|---|
category_id *required |
| Category ID | |
name_translations |
| Category Name
| |
seo_title_translations |
| Title of SEO
| |
seo_description_translations |
| Description of SEO
| |
seo_keywords |
| Keywords of SEO,
| |
seo_link |
| SEO url | |
parent_id |
| Decide which category is its parent category.
| |
banner_url |
| Category Banner Picture | |
priority |
| Category Sorting Priority
| |
JSON params example
{
"category": {
"name_translations": {
"en": "Featured Products",
"zh-hant": "精選商品",
"zh-hk": "精選商品",
"zh-cn": "精选商品",
"zh-tw": "精選商品",
"ja": "おすすめ商品",
},
"seo_title_translations": {
"en": "SEO",
"zh-hant": "SEO優化"
},
"seo_description_translations": {
"en": "SEO",
"zh-hant": "SEO內文"
},
"seo_keywords": "關鍵字修改",
"seo_link": "shopline",
"parent_id": "5de4b3fe461b13002154587f",
"banner_url": "https://shopline.tw/blog/wp-content/uploads/2015/11/logo-shopline-white.png",
"priority": "1.0"
}
}{
"category": {
"name_translations": { "en": "換季特賣" },
"seo_title_translations": { "en": "Seasonal sale", "zh-hant": "換季特賣" },
"seo_description_translations": { "en": "Winter clothes- inventory clearance of clothes, shoes, boots, purses and other seasonal items.", "zh-hant": "冬季清倉特賣" },
"seo_keywords": "特賣, 冬季",
"seo_link": "seasonal_sale",
"banner_url": "https://shopline.tw/blog/wp-content/uploads/2015/11/logo-shopline-white.png",
"parent_id": "5c497098e3880960534a2733",
"priority": 15
}
}Response Example
{
"id": "5c74f405e388095f35c25f59",
"name_translations": {
"en": "換季特賣"
},
"seo_title_translations": {
"en": "Seasonal sale",
"zh-hant": "換季特賣"
},
"seo_description_translations": {
"en": "Winter clothes- inventory clearance of clothes, shoes, boots, purses and other seasonal items.",
"zh-hant": "冬季清倉特賣"
},
"seo_keywords": "特賣, 冬季",
"key": null,
"status": "active",
"banner_medias": [
{
"images": {
"original": {
"width": 1600,
"height": 500,
"url": "https://img.shoplineapp.com/media/image_clips/5c74f404e388095f35c25f58/original.png?1551168515"
},
"thumb": {
"width": 1600,
"height": 500,
"url": "https://img.shoplineapp.com/media/image_clips/5c74f404e388095f35c25f58/original.png?1551168515"
},
"source": {
"width": 1600,
"height": 500,
"url": "https://img.shoplineapp.com/media/image_clips/5c74f404e388095f35c25f58/original.png?1551168515"
},
"favicon_small": {
"width": 16,
"height": 16,
"url": "https://img.shoplineapp.com/media/second_clips/5c74f404e388095f35c25f58/favicon_small.png?1551168516"
},
"favicon": {
"width": 32,
"height": 32,
"url": "https://img.shoplineapp.com/media/second_clips/5c74f404e388095f35c25f58/favicon.png?1551168516"
},
"favicon_large": {
"width": 64,
"height": 64,
"url": "https://img.shoplineapp.com/media/second_clips/5c74f404e388095f35c25f58/favicon_large.png?1551168516"
},
"transparent_thumb": {
"width": 200,
"height": 200,
"url": "https://img.shoplineapp.com/media/second_clips/5c74f404e388095f35c25f58/transparent_thumb.png?1551168516"
},
"transparent_large": {
"width": 500,
"height": 156,
"url": "https://img.shoplineapp.com/media/second_clips/5c74f404e388095f35c25f58/transparent_large.png?1551168516"
},
"transparent_xlarge": {
"width": 1000,
"height": 313,
"url": "https://img.shoplineapp.com/media/second_clips/5c74f404e388095f35c25f58/transparent_xlarge.png?1551168516"
},
"transparent_medium": {
"width": 250,
"height": 78,
"url": "https://img.shoplineapp.com/media/second_clips/5c74f404e388095f35c25f58/transparent_medium.png?1551168516"
}
},
"_id": "5c74f404e388095f35c25f58",
"alt_translations": {}
}
],
"parent_id": "5c497098e3880960534a2733",
"priority": 15
}Updated 21 days ago