Skip to content
开发文档
能力中心
应用市场
WebOffice
开发者后台

分页查询公告可见范围

根据公告ID分页查询可见的企业/部门/用户列表

请求说明

请求地址https://openapi.wps.cn/v7/announce/announces/{announce_id}/visibilities
请求方法GET
签名方式KSO-1
权限要求查询公告(应用授权) kso.announce.read

请求头(Header)

Header 名称参数类型是否必填说明
Content-Typestring使用:application/json
X-Kso-DatestringRFC1123 格式的日期,例: Wed, 23 Jan 2013 06:43:08 GMT
X-Kso-AuthorizationstringKSO-1 签名值,详见《签名方法》
Authorizationstring授权凭证,格式为:Bearer {access_token}

路径参数(Path)

名称类型是否必填说明
announce_idstring<= 1024 characters,公告id

查询参数(Query)

名称类型是否必填说明
page_sizeint640 <= page <= 100, 分页大小
page_tokenstring<= 1024 characters,分页token(第一次请求不传)
with_totalbool是否返回总数

请求地址示例

[GET] https://openapi.wps.cn/v7/announce/announces/23367/visibilities?with_total=true&page_token=0&page_size=20

响应体(Response)

名称类型说明
codeintegercode
moreobject更多的错误信息
msgstringmsg
dataobject信息返回
itemsobject[]可见范围列表
∟∟ subject_idstring可见标识id(公司id/部门id/用户id)
∟∟ subject_typestring可见类型(company=企业,dept=部门,user=用户)
next_page_tokenstring分页令牌(空字符串表示最后一页)
totalinteger总记录数

响应体示例

json
{
  "data": {
    "items": [
      {
        "subject_id": "Xjj3Np4",
        "subject_type": "company"
      },
      {
        "subject_id": "Xjj3Pp4",
        "subject_type": "dept"
      },
      {
        "subject_id": "Xj33j4",
        "subject_type": "user"
      }
    ],
    "next_page_token": "",
    "total": 3
  },
  "code": 0,
  "more": {},
  "msg": "string"
}
回到旧版