Name | Get Reservation Quotes |
---|---|
Description | Get the quotes for a reservations |
Method | GET |
URL | /reservations/{reservation}/quotes |
Example | /api/reservations/123456789/quotes | Access | OWNER, MANAGER, TRAVELER |
Authorization | eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXUyJ9... |
---|---|
Fields | Type | Required | Description |
---|---|---|---|
reservation | number | yes | Reservation id. |
[
{
"id": "93788848",
"date_created": "2017-04-14T11:48:22-0400",
"check_in": "2017-04-15T00:00:00-0400",
"check_out": "2017-04-18T00:00:00-0400",
"nights": 3,
"adults": 1,
"children": 0,
"message": "",
"status": "pending",
"nights_price_total": 150,
"cleaning_fee": 20,
"pet_fee": 10,
"lodging_tax": 16,
"sales_tax": 16,
"refundable_damage": 500,
"add_guest": "null",
"guest_fee": "null",
"fee0_name": "null",
"fee0": "null",
"fee1_name": "null",
"fee1": "null",
"fee2_name": "null",
"fee2": "null",
"fee3_name": "null",
"fee3": "null",
"fee4_name": "null",
"fee4": "null",
"quote_total": 712,
"quote_total_USD": "null",
"payment": false,
"payment_request": true
}
]
Code | Message | Cause | Possible Frontend Message [Behavior] |
---|---|---|---|
EC000 |
Internal error in API |
Internal error connecting the database | "Oops! Looks like we hit a snag. Try closing the app and reopening it." |
EC001 |
User not found |
Token user id doesn't match our records | "Sorry, We couldn't find your information!" |
EC003 |
Reservation not found |
Reservation id doesn't match our records | "Sorry, We couldn't find that reservation!" |
EC031 |
Reservation not belong to that user |
The user logged in is not the reservation's traveler or the owner | "Sorry, you do not have access to that reservation!" |
SC006 |
User no authorization |
The token role is not valid for using the API services | "You have been logged out." - [Take the user to the login screen] |
SC014 |
Expired token |
The token has expired | "You have been logged out." - [Take the user to the login screen] |
VID234 |
Invalid input for reservation |
Reservation id is not a number | "Sorry, We couldn't find that reservation!" - [Call the API again using a valid value for reservation id] |