1234567891011121314151617181920212223242526 |
- ### 로그인
- # @name login
- POST {{baseUrl}}/api/users/login HTTP/1.1
- content-type: application/json
- {
- "type": 0,
- "userId": "ubitems",
- "passwd": "ubitems"
- }
- @token = {{login.response.body.AccessToken}}
- ### 시설가동시간
- GET {{baseUrl}}/api/FacilityTime/Data
- //?siteId=1&facilityType=0&year=2020&month=2
- ?siteId=1
- Authorization: Bearer {{token}}
- ### 시설종류
- GET {{baseUrl}}/api/FacilityTime/FacilityTypeList
- ?siteId=1
- Authorization: Bearer {{token}}
|