> For the complete documentation index, see [llms.txt](https://docs.tsgglobal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tsgglobal.com/api-reference/phone-numbers/remove-reserved-number-from-cart.md).

# Remove Reserved Number From Cart

## Overview

Remove reserved numbers you no longer want from your cart.

## Authentication

{% hint style="info" %}
This function is available via our new GraphQL API. You can read more about how to authenticate to this API [here](/graphql-api-and-authentication.md).
{% endhint %}

## Example Mutation

```
mutation CartRemove($numbers:[String]) {
  releaseReserved(numbers:$numbers) {
    excluded
    excludedCount
    releasedCount
    totalCount
  }
}
```

### Query Variables

```
{
  "numbers": ["8572391651"]
}
```

## Example Response

```
{
  "data": {
    "releaseReserved": {
      "excluded": [],
      "excludedCount": 0,
      "releasedCount": 1,
      "totalCount": 1
    }
  }
}
```
