# Remove Booking Session

<mark style="color:green;">`POST`</mark> `[PlatformAddress]/api/1.0/venue?action=removeBookingSession`

Remove booking session from booking session

{% tabs %}
{% tab title="200 " %}

```javascript
{
  "success": true,
  "id": 1234
}
```

{% endtab %}
{% endtabs %}

### Example Request

```javascript
{
  "id": 8820,
  "venueId": 1,
  "bookingId": 15722
}
```

### Returns

| Property | Description                                           |
| -------- | ----------------------------------------------------- |
| success  | Whether or not the session is delete from the booking |
| id       | The unique id of the Booking Session                  |

### Throws

| Code                 | Description                |
| -------------------- | -------------------------- |
| Specific Code: 24365 | The booking does not exist |
| Specific Code: 24366 | The session does not exist |
