# Cancel Errors

General errors will return a HTTP 400 response with a description of the error. See below for the list of Cancel general errors.

## Invalid Booking Reference

An invalid booking reference was used to cancel a booking.

```json
{
    "errors": {
        "Reference": "Booking not found"
    }
}
```

## Cancellation Request Failed

The booking is still in quote status, only bookings in Confirmed status can be cancelled.

```json
{
    "errors": [
        "Booking `2CJ2-XBB3-INS` can not be cancelled, already been cancelled on 2024-01-23 04:26:08"
    ]
}
```

The booking has a claim submitted against it and can not be cancelled.

```json
{
    "errors": [
        "Booking `98PD-SEQN-INS` can not be cancelled, claim in progress"
    ]
}
```

The booking cannot be cancelled as the customer submitted a charge dispute with their bank.

```json
{
    "errors": [
        "Booking `F8TU-62C6-INS` can not be cancelled as it has been disputed"
    ]
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://partner-docs.covergenius.com/rentalcover/errors/cancel-errors.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
