Resume database traffic requests
REST API requests to resume traffic for a database
| Redis Enterprise Software | 
|---|
| Method | Path | Description | 
|---|---|---|
| POST | /v1/bdbs/{uid}/actions/resume_traffic | Resume database traffic | 
Resume database traffic
POST /v1/bdbs/{int: uid}/actions/resume_traffic
Resume traffic handling for the database.
Use this action to resume read and write traffic on a database, where traffic was previously paused using the stop_traffic action.
Required permissions
| Permission name | Roles | 
|---|---|
| update_bdb_with_action | admin cluster_member db_member | 
Request
Example HTTP request
POST /v1/bdbs/1/actions/resume_traffic
URL parameters
| Field | Type | Description | 
|---|---|---|
| uid | integer | The unique ID of the database. | 
Response
Returns a JSON object with an action_uid. You can track the action's progress with a GET /v1/actions/<action_uid> request.
Status codes
| Code | Description | 
|---|---|
| 200 OK | The request is accepted and is being processed. The database state will be active-change-pendinguntil the request has been fully processed. | 
| 404 Not Found | Attempting to perform an action on a nonexistent database. | 
| 409 Conflict | Attempting to change a database while it is busy with another configuration change. This is a temporary condition, and the request should be reattempted later. |