Obtain Building List
https://api.orbitaiot.com/open/v1/hotel/buildingList
1. HTTP Request Method and Example
| POST /open/v1/hotel/buildingList Host: api.orbitaiot.com Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiIyMiIsImp0aSI6Ijc1MDc1ZDUxYzVlZTYwMjVjNTcwNGJiY2M3MzIzMjViZmEwMjBlZ.......... Content-Type: application/json |
2. Parameter Description
Headers Parameter
| Key | Type | Request | Vlues |
| Content-Type | String | Y | application/json |
| Authorization | String | Y | Bearer [access_token value] |
Body Parameter
| Name | Type | Required | Description |
| name | String | N | building name |
| buildingCardId | String | N | building number,two-digit format |
3. Return Parameters and Examples
| Name | Type | Description |
| code | Int | |
| data | JSONArray | |
| message | String | |
| list | object | |
| id | Int | building_id,id |
| name | String | building name |
| buildingCardId | String | building number |
{ "code": 0,
"message": "success",
"data": {
"list": [
{
"id": 11,
"name": "01",
"buildingNumber": 1,
"buildingCardId": "01",
"createDate": "2025-07-24 13:41:48",
"updateDate": "2025-07-24 13:41:48"
},
{
"id": 18,
"name": "02",
"buildingNumber": 2,
"buildingCardId": "02",
"createDate": "2025-09-10 09:34:47",
"updateDate": "2025-09-10 09:34:47"
},
{
"id": 57,
"name": "03",
"buildingNumber": 3,
"buildingCardId": "03",
"createDate": "2026-04-09 10:23:02",
"updateDate": "2026-04-29 20:05:10"
}
]
}
}
4. Interface Example

