http://localhost:8000/api/booking
All routes below are prefixed with this base URL.
{
"category": [
{
"categoryId": "paper",
"name": "Paper",
"estimatedWeight": 13,
"subcategories": [
{
"subCategoryId": "newspaper",
"name": "Newspaper"
},
{
"subCategoryId": "cardboard",
"name": "Cardboard"
}
]
}
],
"scrapImages": [
{
"imageUrl": "https://example.com/uploads/scrap1.jpg",
"size": 204800,
"type": "image/jpeg"
},
{
"imageUrl": "https://example.com/uploads/scrap2.jpg",
"size": 305000,
"type": "image/png"
}
],
"pickupLocation": {
"doorNo": "12A",
"flat": "3rd Floor",
"area": "MG Road",
"landmark": "Near Metro Station",
"city": "Bangalore",
"state": "Karnataka",
"pincode": "560001",
"coordinates": {
"lat": 12.9716,
"lng": 77.5946
}
},
"estimatedPrice": 195
}
{
"success": true,
"message": "Booking created successfully",
"data": createdBooking
}
Authorization: Bearer <your_token>
{
"success": true,
"bookings": [
{
"_id": "bookingId1",
"status": "requested",
"estimatedPrice": 195,
"pickupLocation": {...}
}
]
}
{
"success": true,
"bookings": [],
"message": "No active bookings found"
}
Authorization: Bearer <your_token>
{
"success": true,
"bookings": [
{
"_id": "bookingId1",
"status": "completed",
"estimatedPrice": 220,
"pickupLocation": {...}
}
]
}
{
"success": true,
"bookings": [],
"message": "No active bookings found"
}