Reservations component for a vacation rental marketplace site
- https://github.com/spicy-boiz/photo-carousel-service
- https://github.com/spicy-boiz/places-to-stay-service
- https://github.com/spicy-boiz/reviews-service
- Access the individual component through http://18.217.62.125:3002/listings/5/
- Access the site in whole through http://3.20.233.115:3000/5/
- Change listings by modifying the numerical value after the site, e.g. from http://3.20.233.115:3000/5/ to http://3.20.233.115:3000/10/
An nvmrc
file is included if using nvm.
- Node 6.13.0
From within the root directory:
npm install
npm run seed
npm run server
npm run build
Create / POST
- Allows you to create a listing for a property
- Endpoint - /api/listings
- Request body
{
"id": "Number",
"name": "String",
"maxGuests": "Number",
"fees": {
"pernight": "Number",
"cleaning": "Number",
"service": "Number"
}
}
- Response object - HTTP Status Code 201
Create / POST
- Allows you to create a reservation for specified dates, number of adults, children, and infants
- Endpoint - /api/listings/:id
- Path params
-
id
- listing ID - Request body
{
"id": "Number",
"reservation_id": "Number",
"name": "String",
"checkin": "Date",
"checkout": "Date",
"adults": "Number",
"children": "Number",
"infants": "Number"
}
- Response object - HTTP Status Code 201
Read / GET
- Endpoint - /api/listings
- Response object - Array of JSON objects representing available listings
[{
"id": "Number",
"name": "String",
"maxGuests": "Number",
"fees": {
"pernight": "Number",
"cleaning": "Number",
"service": "Number"
}
}...]
Read / GET
- Allows you to get reservation data from a listing
- Endpoint - /api/listings/:id/:reservationId
- Path params
-
id
- listing ID -reservationId
- reservation ID - Response object
{
"id": "Number",
"name": "String",
"fees": {
"pernight": "Number",
"cleaning": "Number",
"service": "Number"
}
}
Update / PUT
- Allows you to update listing info
- Endpoint - /api/listings/:id
- Path params
-
id
- listing ID - Request body - Expects JSON with any of the following keys (include only keys to be updated)
{
"reservationId": "Number",
"name": "String",
"checkin": "Date",
"checkout": "Date",
"adults": "Number",
"children": "Number",
"infants": "Number"
}
- Response object - HTTP Status Code 200
Delete / DELETE
- Allows you to delete a Listing
- Endpoint - /api/listings/:id
- Path params
-
id
- listing ID - Response object - HTTP Status Code 204
Delete / DELETE
- Allows you to delete a reservation from a listing at a specific reservation ID
- Endpoint - /api/reservation/:id
- Path params
-
id
- reservation ID - Response object - HTTP Status Code 204