查询组织信息(API名称:getOrgData)
功能介绍
查询组织信息
相关接口
接口名称 |
调用说明 |
---|---|
调用该接口获取到Token,再调用其他接口时,需要在请求消息头中添加“Authorization”,其值即为Token。 |
URL
请求方式 |
HTTPS地址 |
服务架构 |
消息体类型 |
---|---|---|---|
POST |
https://isdp+域名/openapi/v1/filterCondition/getOrgData |
OpenAPI |
application/json |
请求头
KEY |
VALUE |
是否必填 |
描述 |
---|---|---|---|
Content-Type |
application/json |
是 |
无 |
Authorization |
bearer ${access_token} |
是 |
bearer +“ ”+5.2.1中获取的access_token的值 |
请求参数
参数 |
类型 |
是否必填 |
描述 |
---|---|---|---|
pageStart |
int |
否 |
当前页码:从0开始 |
pageSize |
int |
否 |
每页数量:默认15条,最多100条 |
imageLevel |
String |
是 |
全球形象等级 |
响应参数
字段名 |
数据类型 |
字段名称 |
---|---|---|
stateCode |
String |
响应状态码:0-成功;其他-失败 |
errorMessage |
String |
响应描述 |
result |
Object |
响应结果内容data、分页数据 |
result出参:
字段名 |
数据类型 |
字段名称 |
---|---|---|
pos |
int |
当前页:从0开始 |
total_count |
int |
总数量 |
data |
List<Object> |
响应结果内容data |
data的参数:
字段名 |
数据类型 |
字段名称 |
---|---|---|
name |
String |
层级名称 |
level |
List<Object> |
层级 |
id |
String |
id |
value |
int |
层级值 |
child |
List<Object> |
子层级 |
child的参数:
字段名 |
数据类型 |
字段名称 |
---|---|---|
name |
String |
层级名称 |
level |
List<Object> |
层级 |
id |
String |
id |
value |
int |
层级值 |
child |
List<Object> |
子层级 |
请求示例
{ "pageStart": 0, "pageSize": 100, "imageLevel": "智能生活馆" }
响应示例
{ "stateCode": "0", "errorMessage": "success", "result": { "pos": 0, "totalCount": 1, "data": [ { "level": 2, "name": "第二层级", "value": "智能生活馆", "child": [ { "level": 3, "name": "第三层级", "value": "北京-生活馆", "child": [ { "level": 4, "name": "第四层级", "id": 910150, "value": "华为智能生活馆 北京东方新天地" }, { "level": 4, "name": "第四层级", "id": 910147, "value": "华为智能生活馆 北京丽泽天街" }, { "level": 4, "name": "第四层级", "id": 910151, "value": "华为智能生活馆 北京大悦春风里" }, { "level": 4, "name": "第四层级", "id": 910136, "value": "华为智能生活馆 北京清河万象汇" }, { "level": 4, "name": "第四层级", "id": 910148, "value": "华为智能生活馆 北京熙悦天街" }, { "level": 4, "name": "第四层级", "id": 910152, "value": "华为智能生活馆 北京蓝色港湾" }, { "level": 4, "name": "第四层级", "id": 910145, "value": "华为智能生活馆 北京西单更新场" }, { "level": 4, "name": "第四层级", "id": 910146, "value": "华为智能生活馆 北京西直门凯德" } ] }, { "level": 3, "name": "第三层级", "value": "云南-生活馆", "child": [ { "level": 4, "name": "第四层级", "value": "保山市", "child": [ { "level": 5, "name": "第五层级", "id": 910260, "value": "华为智能生活馆·保山吾悦" } ] }, { "level": 4, "name": "第四层级", "value": "昆明市", "child": [ { "level": 5, "name": "第五层级", "id": 910259, "value": "华为智能生活馆·昆明海乐世界" }, { "level": 5, "name": "第五层级", "id": 910258, "value": "华为智能生活馆 昆明瑞鼎城爱琴海" } ] } ] } ] } ] } }