获取应用在企业内的可用范围
获取当前企业管理员所属企业下的应用使用范围
请求说明
请求地址 | https://openapi.wps.cn/v7/developer/applications/current/subjects |
---|---|
请求方法 | GET |
签名方式 | KSO-1 |
权限要求 | 查询应用信息(应用授权) kso.app.read |
请求头(Header)
Header 名称 | 参数类型 | 是否必填 | 说明 |
---|---|---|---|
Content-Type | string | 是 | 使用:application/json |
X-Kso-Date | string | 是 | RFC1123 格式的日期,例: Wed, 23 Jan 2013 06:43:08 GMT |
X-Kso-Authorization | string | 是 | KSO-1 签名值,详见《签名方法》 |
Authorization | string | 是 | 授权凭证,格式为:Bearer {access_token} |
查询参数(Query)
名称 | 参数类型 | 是否必填 | 说明 |
---|---|---|---|
page_size | integer | 否 | 分页大小,默认为:10,最大值:50 |
page_token | string | 否 | 分页标记,第一次请求不填,表示从头开始遍历;分页查询结果还有更多项时会同时返回 next_page_token ,下次遍历可采用该 page_token 获取查询结果 |
with_total | boolean | 否 | 是否返回 total 总数字段,默认不返回 |
type | array[string] | 否 | 类型 company :企业;dept :部门;user :用户partner_company :关联组织企业;partner_dept :关联组织部门;partner_user :关联组织用户 注意:仅企业自建应用会有关联组织信息,格式为: type={string_1}&type={string_2} |
请求地址示例
[GET] https://openapi.wps.cn/v7/developer/applications/current/subjects?page_size={integer}&page_token={string}&with_total={boolean}&type={string_1}&type={string_2}
响应体
名称 | 参数类型 | 说明 |
---|---|---|
code | integer | 响应代码。非 0 表示失败,参照《状态码说明》 |
msg | string | 响应信息 |
data | object | 响应数据 |
∟ items | array[object] | 应用成员信息列表 |
∟ ∟ id | string | 对应类型 id |
∟ ∟ name | string | 对应类型名称 |
∟ ∟ type | string[enum] | 类型 company :企业;dept :部门;user :用户partner_company :关联组织企业;partner_dept :关联组织部门;partner_user :关联组织用户 注意:仅企业自建应用会有关联组织信息 |
∟ next_page_token | string | 下一页 token |
∟ total | integer | 数据总数 |
more | object | 更多的错误信息 |
响应体示例
json
{
"data": {
"items": [
{
"id": "string",
"name": "string",
"type": "string[enum]"
}
]
},
"total": 0,
"next_page_token": "string",
"msg": "string",
"code": 0
}