批量更新关键词标签
HTTP请求方式
POST
请求地址
https://api.e.360.cn/dianjing/tag/batchupdate
| 字段 | 类型 | 必须 | 描述 | 
| Content-Type | string | yes | application/x-www-form-urlencoded | 
| apiKey | string | yes | 注册时分配到的api key,该参数作为HTTP HEAD字段传递。 | 
| accessToken | string | yes | 访问token | 
Body 请求参数
| 字段 | 类型 | 必须 | 描述 | 
| tags | Json | yes | 关键词标签信息 | 
请求示例
curl -X POST \ 
--header 'apiKey:APIKEY' \ 
--header 'accessToken:ACCESSTOKEN' \ 
--data 'tags=[{"id":"11","title":"修改名称"}]' \ 
'https://api.e.360.cn/dianjing/tag/batchupdate'
[
    {
        "id": "11",
        "title": "修改名称"
    }
]
| 字段 | 类型 | 描述 | 
| id | string | 关键词标签id | 
| title | string | 关键词标签名称 | 
返回结果
{
  "affectedRecords": [
    "11"
  ],
  "failures": []
}
返回结果说明
| 字段 | 类型 | 描述 | 
| affectedRecords | json | 成功更新id数组 |