Update a specific seat by its ID with a PUT request:
PUT /seats/{id}
{
"seat_number": "2A",
"row_position": 2,
"col_position": 1,
"seat_type": "VIP"
}
{
"status": "success",
"message": "Seat updated successfully",
"data": {
"seat_plan_id": 1,
"seat_number": "2A",
"row_position": 2,
"col_position": 1,
"seat_type": "VIP",
"created_at": "2025-07-08T13:00:00",
"updated_at": "2025-07-08T14:00:00"
}
}