API: Delete Seat Plane

Request

Soft delete a specific seat plan by ID:

DELETE /seat-plans/{id}

Sample Response:


{
  "status": "success",
  "message": "Seat plane deleted successfully",
  "data": null
}
                

Notes:

  • The seat plane ID is required in the URL to specify which seat plane to delete.
  • If the seat plane does not exist or has already been deleted, the API will return a 404 error.
  • This is a soft delete operation - the seat plane record remains in the database but is marked as deleted.