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}}
- ### 사이트맵
- POST {{baseUrl}}/api/sitemap/upload/1
- Authorization: Bearer {{token}}
- [
- {
- "Path": "/test/calendar",
- "Name": "달력",
- "Icon": "calendar"
- }
- ]
|