返回码 | 返回消息 | 描述 |
---|---|---|
200 | 成功 | |
510001 | 参数错误 | 必填项为空、参数长度不符合等参数异常情况 |
511144 | 超出最大分页量限制 |
curl --location --request GET 'https://api2.hik-cloud.com/api/v1/estate/system/buildings/actions/communityBuildingList' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"communityId": "00a795f4a25d4de09edd091f28747eb4",
"pageNo": 1,
"pageSize": 10
}'
{
"code": 200,
"message": "操作成功",
"data": {
"pageNo": 1,
"pageSize": 100,
"totalPage": 1,
"total": 1,
"hasNextPage": false,
"hasPreviousPage": false,
"firstPage": true,
"lastPage": true,
"rows": [
{
"buildingId": "00a795f4a25d4de09edd091f28747eb4",
"path": "2fbc0d66e9494631a029a1159de2beb7/00a795f4a25d4de09edd091f28747eb4",
"buildingName": "1幢",
"buildingNumber": "12",
"floorUpCount": "50",
"floorDownCount": "2",
"floorFamilyCount": "6",
"buildingUnitSize": "10",
"createTime": "2019-04-10T16:32:42+08:00",
"buildingRemark": "备注信息"
}
]
}
}