---
Title: Backup reset status database action requests
alwaysopen: false
categories:
- docs
- operate
- rs
description: Reset database backup status requests
headerRange: '[1-2]'
linkTitle: backup_reset_status
weight: $weight
---
| Method | Path | Description |
|--------|------|-------------|
| [PUT](#put-bdbs-actions-backup-reset-status) | `/v1/bdbs/{uid}/actions/backup_reset_status` | Reset database backup status |
## Reset database backup status {#put-bdbs-actions-backup-reset-status}
```sh
PUT /v1/bdbs/{int: uid}/actions/backup_reset_status
```
Resets the database's `backup_status` to idle if a backup is not in progress and clears the value of the `backup_failure_reason` field.
### Permissions
| Permission name | Roles |
|-----------------|-------|
| [reset_bdb_current_backup_status]({{< relref "/operate/rs/references/rest-api/permissions#reset_bdb_current_backup_status" >}}) | admin
cluster_member
db_member |
### Request {#put-request}
#### Example HTTP request
```sh
PUT /v1/bdbs/1/actions/backup_reset_status
```
#### Headers
| Key | Value | Description |
|-----|-------|-------------|
| Host | cnm.cluster.fqdn | Domain name |
| Accept | application/json | Accepted media type |
#### URL parameters
| Field | Type | Description |
|-------|------|-------------|
| uid | integer | The unique ID of the database |
### Response {#put-response}
Returns a status code.
#### Status codes {#put-status-codes}
| Code | Description |
|------|-------------|
| [200 OK](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.2.1) | The request is accepted and is being processed. |
| [404 Not Found](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.5) | Attempting to perform an action on a nonexistent database. |
| [406 Not Acceptable](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.7) | Not all the modules loaded to the database support 'backup_restore' capability |
| [409 Conflict](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.10) | Database is currently busy with another action. In this context, this is a temporary condition and the request should be reattempted later. |