Booking List
This endpoint use GET method to fetch the list of bookings. Request headers have to include the token on the authentication key.
Endpoint
GET https://{{base_url}}/api-v2/booking/
Response format and explanation of every field
Response
[
{
"booking_id": "904638",
"reference_number": "",
"is_active": true,
"created_at": "2024-08-12T15:53:54.330350-04:00",
"cancellation_date": "2024-10-08",
"name": "PRUEBA",
"last_name": "PRUEBA",
"passport_or_dni": "123123123",
"email": "test@test.com",
"phone": "+56999999999",
"country": "Chile",
"notes": "NOTA GENERAL DE PRUEBA",
"sale_price": 56000.0,
"currency": "CLP",
"services": [
{
"service_code": "44220",
"description": "TRANSFER SANTIAGO AIRPORT /SANTIAGO HOTEL\r\n\r\nTRANSFERS FROM/TO HOTELS LOCATED IN SANTIAGO CENTRO, PROVIDENCIA, LAS CONDES, VITACURA AND HOTELS IN THE AIRPORT AREA.",
"meeting_point": "Airport",
"service_duration": "Other",
"name": "TRANSFER SANTIAGO AIRPORT /SANTIAGO HOTEL",
"language": "Español",
"guide": "Driver",
"concepts": ["Transfer"],
"cover_image": "https://storage.googleapis.com/cts_storage/ctsonline/online_reservations/transfers_image.webp",
"city": "SANTIAGO, CHILE",
"country": "CHILE",
"is_regular": false,
"service_type": "transfer",
"travel_date": "2024-10-10",
"flight_number": "LA2345",
"notes": "pickup at: 10:30",
"cancellation_date": "2024-10-08",
"sale_price": 56000.0,
"adults": 2,
"children": 0,
"is_active": true,
"created_at": "2024-08-12T15:53:54.338082-04:00",
}
],
}
]