-
Notifications
You must be signed in to change notification settings - Fork 1
/
apiary.apib
85 lines (66 loc) · 2.42 KB
/
apiary.apib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
FORMAT: 1A
HOST: https://api.booking-system.bramvanosta.com/
# Booking System
Booking System is an application which helps manage bookings for campgrounds.
## Campgrounds Collection [/v1/campgrounds]
### List All Campgrounds [GET]
+ Request (application/json)
+ Headers
access-token: facxzlZ_gSqGqzBZYe0XKQ
client: RsMVhBPgvqHO0gUktowP0w
uid: [email protected]
expiry:1506628130
token-type:Bearer
+ Response 200 (application/json)
[
{
"id": 1,
"name": "Camping Lestaubière",
"address": "Camping Lestaubière, Pont Saint Mamet",
"zip_code": "24140",
"city": "Douville",
"country": "France",
"longitude": 0.598711,
"latitude": 44.992392,
"logo_url": "http://url-to-my-logo.com",
"website_url": "http://camping-lestaubiere.fr",
"phone_number": "0501050604",
"mobile_number": "0601052878"
}
]
### Create a New Campground [POST]
+ Request (application/json)
+ Headers
access-token: facxzlZ_gSqGqzBZYe0XKQ
client: RsMVhBPgvqHO0gUktowP0w
uid: [email protected]
expiry:1506628130
token-type:Bearer
+ Body
{
"name": "Camping Lestaubière",
"address": "Camping Lestaubière, Pont Saint Mamet",
"zip_code": "24140",
"city": "Douville",
"country": "France",
"logo_url": "http://url-to-my-logo.com",
"website_url": "http://camping-lestaubiere.fr",
"phone_number": "0501050604",
"mobile_number": "0601052878"
}
+ Response 201 (application/json)
+ Body
{
"id": 1,
"name": "Camping Lestaubière",
"address": "Camping Lestaubière, Pont Saint Mamet",
"zip_code": "24140",
"city": "Douville",
"country": "France",
"longitude": 0.598711,
"latitude": 44.992392,
"logo_url": "http://url-to-my-logo.com",
"website_url": "http://camping-lestaubiere.fr",
"phone_number": "0501050604",
"mobile_number": "0601052878"
}