# Disable Auto Upgrade

> This endpoint disables Auto Upgrade for given database.

## Endpoint

`POST https://api.upstash.com/v2/redis/disable-autoupgrade/{id}`

## Parameters

- `id` (path, string, required): The ID of the database to disable auto upgrade

## Responses

### 200 - Auto upgrade disabled successfully


## cURL

```bash
curl --request POST \
  --url https://api.upstash.com/v2/redis/disable-autoupgrade/{id} \
  --header 'Authorization: Bearer <token>'
```
