Create a new booking with a POST request:
POST /bookings
{
"mobile": "01712345678",
"name": "John Doe",
"gender": "Male",
"age": 30,
"address": "123 Main Street, Dhaka",
"passport_no": null,
"nid": "1234567890123",
"nationality": "Bangladeshi",
"email": "john@example.com",
"trip_id": 1,
"type": 2,
"date": "2025-08-18",
"time": "10:00:00",
"route_id": 1,
"boarding_id": 1,
"dropping_id": 2,
"booking_details": [
{
"seat_inventory_id": 1,
"seat_id": 1,
"price": 1500,
"discount": 50
},
{
"seat_inventory_id": 2,
"seat_id": 2,
"price": 1500,
"discount": 0
}
]
}
{
"status": "success",
"code": 201,
"message": "Booking created successfully and seats marked as sold",
"data": {
"booking": {
"id": 5,
"pnr_number": "L2DB92GFBG",
"trip_id": 1,
"type": 2,
"date": "2025-08-18",
"time": "10:00:00",
"route_id": 1,
"boarding_id": 1,
"dropping_id": 2,
"total_tickets": 2,
"total_price": 3000,
"total_discount": 50,
"total_amount": 2950,
"status": "confirmed",
"created_at": "2025-08-18T10:30:00.000000Z"
},
"customer": {
"id": 1,
"name": "John Doe",
"mobile": "01712345678",
"email": "john@example.com",
"gender": "Male",
"age": 30,
"address": "123 Main Street, Dhaka",
"passport_no": null,
"nid": "1234567890123",
"nationality": "Bangladeshi"
},
"boarding_info": {
"id": 1,
"trip_id": 1,
"time": "08:00:00",
"counter_id": 1,
"counter_name": "Kallyanpur Counter",
"counter_location": "Near Kallyanpur Bus Stand",
"district_name": "Dhaka"
},
"dropping_info": {
"id": 2,
"trip_id": 1,
"time": "14:00:00",
"counter_id": 2,
"counter_name": "GEC Counter",
"counter_location": "GEC Circle",
"district_name": "Chittagong"
},
"trip_details": {
"trip_id": 1,
"trip_date": "2025-08-18",
"status": 1,
"coach_type": 1,
"coach_type_name": "AC",
"coach": {
"id": 1,
"coach_no": "101",
"status": 1
},
"bus": {
"id": 1,
"registration_number": "DH-123456",
"manufacturer_company": "Volvo",
"model_year": 2020
},
"route": {
"id": 1,
"start_id": 1,
"end_id": 2,
"distance": 264,
"duration": "06:00"
},
"schedule": {
"id": 1,
"name": "10:00"
},
"seat_plan": {
"id": 1,
"name": "AC Business",
"floor": 1,
"rows": 10,
"cols": 4
}
},
"sold_seats": [
{
"seat_inventory_id": 1,
"seat_id": 1,
"seat_number": "A1",
"row_position": 1,
"col_position": 1,
"seat_type": "window",
"price": 1500,
"discount": 50,
"amount": 1450,
"status": "sold"
},
{
"seat_inventory_id": 2,
"seat_id": 2,
"seat_number": "A2",
"row_position": 1,
"col_position": 2,
"seat_type": "middle",
"price": 1500,
"discount": 0,
"amount": 1500,
"status": "sold"
}
],
"seat_status_summary": {
"total_seats_sold": 2,
"seat_status": "sold",
"payment_status": "completed"
}
}
}