> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Release inventory reservation

> Release inventory reservation

### Path parameters

<ParamField path="tenant_id" type="string" required>
  Tenant identifier
</ParamField>

<ParamField path="reservation_id" type="string" required>
  Reservation ID to release
</ParamField>

### Response

`object`

<ResponseField name="ok" type="boolean" required>
  Operation success indicator
</ResponseField>

### Status codes

| Code  | Meaning               |
| ----- | --------------------- |
| `200` | Reservation released  |
| `401` | Unauthorized          |
| `404` | Reservation not found |

<RequestExample>
  ```bash cURL theme={null}
  curl --request DELETE \
    --url 'https://api.sync.stateset.com/v1/tenants/{tenant_id}/inventory/reservations/{reservation_id}' \
    --header 'x-stateset-api-key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "ok": true
  }
  ```
</ResponseExample>
