1 | ###
|
---|
2 | GET http://localhost:8080/api/locations
|
---|
3 |
|
---|
4 | ###
|
---|
5 | GET http://localhost:8080/api/location/1
|
---|
6 |
|
---|
7 | ###
|
---|
8 | POST http://localhost:8080/api/planner
|
---|
9 | Content-Type: application/x-www-form-urlencoded
|
---|
10 |
|
---|
11 | description=Fourth Planner Description&name=Fourth Planner&locationList=
|
---|
12 |
|
---|
13 | ###
|
---|
14 | POST http://localhost:8080/api/planner/new
|
---|
15 | Content-Type: application/json
|
---|
16 |
|
---|
17 | {"name": "Second Planner Check", "description": "Second Planner Description", "locationList" : []}
|
---|
18 |
|
---|
19 | ###
|
---|
20 | PUT http://localhost:8080/api/edit/planner/6
|
---|
21 | Content-Type: application/json
|
---|
22 |
|
---|
23 | {"name": "Sixth Planner Check", "description": "Sixth Planner Description", "locationList" : []}
|
---|
24 |
|
---|
25 | ###
|
---|
26 | GET http://localhost:8080/api/planners
|
---|
27 |
|
---|
28 | ###
|
---|
29 | GET http://localhost:8080/api/planner/1
|
---|
30 |
|
---|
31 | ###
|
---|
32 | GET http://localhost:8080/api/city/locations?cityId=1&companionId=1&lengthOfStay=1&categoryIds=1,2
|
---|
33 |
|
---|
34 | ###
|
---|
35 | GET http://localhost:8080/api/region/locations?regionId=1&companionId=1&lengthOfStay=1&categoryIds=1,2
|
---|
36 |
|
---|
37 | ###
|
---|
38 | GET http://localhost:8080/api/companions
|
---|
39 |
|
---|
40 | ###
|
---|
41 | GET http://localhost:8080/api/categories
|
---|
42 |
|
---|
43 | ###
|
---|
44 | GET http://localhost:8080/api/regions
|
---|
45 |
|
---|
46 | ###
|
---|
47 | GET http://localhost:8080/api/cities
|
---|
48 |
|
---|
49 | ###
|
---|
50 | GET http://localhost:8080/api/countries
|
---|
51 |
|
---|
52 | ###
|
---|
53 | PUT http://localhost:8080/api/add-location
|
---|
54 | Content-Type: application/json
|
---|
55 |
|
---|
56 | {"plannerId": 1, "locationId": 2}
|
---|
57 |
|
---|
58 | ###
|
---|
59 | GET http://localhost:8080/api/planner/locations?plannerId=1
|
---|
60 | Content-Type: application/x-www-form-urlencoded
|
---|
61 |
|
---|
62 | ###
|
---|
63 | GET http://localhost:8080/api/planner/locationIds?plannerId=2
|
---|
64 | Content-Type: application/x-www-form-urlencoded
|
---|
65 |
|
---|
66 | ###
|
---|
67 | GET http://localhost:8080/api/weekend
|
---|
68 | Content-Type: application/x-www-form-urlencoded
|
---|
69 |
|
---|
70 | ###
|
---|
71 | GET http://localhost:8080/api/villages
|
---|
72 | Content-Type: application/x-www-form-urlencoded
|
---|
73 |
|
---|
74 | ###
|
---|
75 | GET http://localhost:8080/api/images?locationId=1
|
---|
76 | Content-Type: application/x-www-form-urlencoded
|
---|
77 |
|
---|
78 | ###
|
---|
79 | POST http://localhost:8080/api/users/register
|
---|
80 | Content-Type: application/json
|
---|
81 |
|
---|
82 | {"username": "teshht@test.com", "fullName": "nikola", "password" : "nikolce", "confirmPassword": "nikolce"}
|
---|
83 |
|
---|
84 | ###
|
---|
85 | POST http://localhost:8080/api/users/login
|
---|
86 | Content-Type: application/json
|
---|
87 |
|
---|
88 | {"username": "test@test.com", "password" : "nikolce"}
|
---|
89 |
|
---|
90 |
|
---|
91 | ###
|
---|
92 | GET http://localhost:8080/api/planners/user
|
---|
93 | Content-Type: application/json
|
---|
94 |
|
---|
95 | ###
|
---|
96 | DELETE http://localhost:8080/api/delete-location
|
---|
97 | Content-Type: application/json
|
---|
98 |
|
---|
99 | {"plannerId": 23, "locationId": 3}
|
---|
100 |
|
---|
101 | ###
|
---|
102 | GET http://localhost:8080/api/users/usernames
|
---|
103 | Content-Type: application/json
|
---|
104 |
|
---|
105 | ###
|
---|
106 | GET http://localhost:8080/api/users/password
|
---|
107 | Content-Type: application/json
|
---|
108 |
|
---|
109 | {"username": "ema@test.com"}
|
---|
110 |
|
---|
111 | ###
|
---|
112 | GET http://localhost:8080/api/all?place=Skopje
|
---|
113 | Content-Type: application/json
|
---|
114 |
|
---|
115 |
|
---|
116 | ###
|
---|
117 | GET http://localhost:8080/api/places
|
---|
118 | Content-Type: application/json
|
---|
119 |
|
---|
120 | ###
|
---|
121 | POST http://localhost:8080/api/add
|
---|
122 | Content-Type: application/json
|
---|