获取个人配置
接口描述
获取当前用户指定对象的个性化配置信息,返回preference
实例
请求URI
/preference/:ref_type/:ref_id
HTTP Method
GET
参数说明
参数名称 | 是否必填 | 参数说明 |
---|---|---|
ref_type | true | 来源类型,支持table |
ref_id | true | 来源ID |
响应结果说明
名称 | 说明 |
---|
请求示例
GET /v2/preference/:ref_type/:ref_id HTTP/1.1
Host: api.huoban.com
Content-Type: application/json
Authorization: Bearer {YOUR ACCESS TOKEN}
响应示例
HTTP/1.1 200 OK
Content-Type: application/json
{
"ref_id": 5000,
"ref_type": "table",
"setting": {
"fixed_field_num": 3
},
"created_on": "2016-08-24 20:00:00",
"updated_on": "2016-08-24 20:00:00"
}
更新个人配置
接口描述
更新当前用户指定对象的个性化配置信息,返回preference
实例
请求URI
/preference/:ref_type/:ref_id
HTTP Method
PUT
参数说明
参数名称 | 是否必填 | 参数说明 |
---|---|---|
setting | true | 配置项,支持fixed_field_num 固定字段数 |
ref_type | true | 来源类型,支持table |
ref_id | true | 来源ID |
响应结果说明
名称 | 说明 |
---|
请求示例
PUT /v2/preference/:ref_type/:ref_id HTTP/1.1
Host: api.huoban.com
Content-Type: application/json
Authorization: Bearer {YOUR ACCESS TOKEN}
{
"setting": {
"fixed_field_num": 3
}
}
响应示例
HTTP/1.1 200 OK
Content-Type: application/json
{
"ref_id": 5000,
"ref_type": "table",
"setting": {
"fixed_field_num": 3
},
"created_on": "2016-08-24 20:00:00",
"updated_on": "2016-08-24 20:00:00"
}