文档
测试

通过楼宇id 获取所有点位信息

GET
http://test.rms.abbieit.com/api/accumedia/building/{buildingID}/point

请求头

参数名
类型
描述
必填
Content-Type
String
Value: application/json
必填
Authorization
String
Value: "Bearer " + 登录接口返回的accessToken
必填

响应参数

参数名
类型
描述
必填
code
int
code 码
必填
message
String
描述
必填
data
obj
返回的实体类型
必填

说明 / 示例

Url(Get 请求): PS:需要在url 上填充楼宇ID ```java http://test.rms.abbieit.com/api/accumedia/building/116/point ``` 返回Result: ```java { "code": 200, "message": "success", "data": [ { "id": 1567, "position": "MIDDLE", "status": "COMPLETED", "buildingId": "116", "productType": "Horizontal Screen", "mac": null, "wifiMac": null, "floorName": "G", "lift": "Lift-2", "remarks": null, "screenSize": "21.5", "code": "", "towerName": "Tower A", "inside": "false" }, { "id": 1568, "position": "MIDDLE", "status": "COMPLETED", "buildingId": "116", "productType": "Horizontal Screen", "mac": null, "wifiMac": null, "floorName": "G", "lift": "Lift-4", "remarks": null, "screenSize": "21.5", "code": "", "towerName": "Tower B", "inside": "false" } ] } ```