分享实例
字段名称 | 字段类型 | 字段说明 |
---|---|---|
share_id | integer | 分享ID |
secret | string | 分享私钥 |
scope | object | 分享数据范围,根据ref_type 有不同的字段,where 表示数据范围(筛选器对象),fields 表示数据可见字段 |
bound_user_id | integer | 当前分享所绑定的用户权限 |
created_by | object | 创建人对应的用户对象,参考user.short 实例 |
ref_id | integer | 来源ID |
ref_type | string | 来源类型,可为空,共四类:table(表格), item(数据) |
app_id | integer | 创建应用ID |
expired_on | integer | 过期时间戳 |
created_on | datetime | 创建时间 |
updated_on | datetime | 更新时间 |
{
"share_id": 6000,
"secret": "ruwlkjf123123u1oiou31pajffa",
"scope": {
"where": {
"and": [
{
"field": 1300,
"query": {
"eq": 200
}
}
]
},
"fields": {
"view": {
"is_all": true,
"fields": []
},
"update": {
"is_all": false,
"fields": [
11001,
11002
]
}
}
},
"bound_user_id": 1200,
"created_by": {
"user_id": 3000,
"name": "名字",
"avatar": "http:\/\/f2.huoban.com\/30000\/user_avatar\/40000\/xxx"
},
"ref_id": 5000,
"ref_type": "table",
"app_id": 4500,
"expired_on": 1400000000,
"created_on": "2016-08-24 20:00:00",
"updated_on": "2016-08-24 20:00:00"
}