Orders represent any bookings that are made on a seller's account. The API end points available for orders allow you to create, update or cancel any booking within a seller's account.
Order Statuses
Every order has an integer status atttribute which describes the state of the booking. The general principle with statuses are:
- Status < 200 indicates a pending booking
- Status >= 200 & < 300 indicates a confirmed booking
- Status >= 300 indicates an unconfirmed booking, which are bookings that were usually cancelled or not accepted.
| Code | Description |
|---|---|
| 100 | A pending booking. The traveler's card has not been charged yet, and the booking will not be counted as a part of trip till it is accepted. |
| 101 | A booking in a pending state due to a minimum configured on the listing. Once the trip meets the minimum, the status of this order will automatically change to 200. |
| 103 | An order in a hold status. |
| 200 | A confirmed/accepted booking |
| 201 | A confirmed booking for which only a deposit has been collected |
| 202 | An accepted booking which has not been charged. |
| 203 | An accepted booking, but with the "Pay Later" payment method. |
| 700 | Booking has been canceled. |