Delete Default Storage
Use the delete default storage request to remove the configured customer-side storage from the system. Following deletion, captured calls are stored in the Uniphore-provided storage until a new default storage is added. This does not remove the data from the storage, but removes the Communication Recording Agent's visibility of the captured calls stored in that storage. Therefore, users won't be able to use the Communication Recording Agent to search for calls stored in that storage after deletion.
Endpoint
Method: DELETE
URL: /v1/media/external-storages/{uuid}
Path Parameter
Parameter Name | Data Type | Description | Required/Optional |
|---|---|---|---|
| string | The ID of the storage to delete. | Required |
For an example request, see Sample Request Path.
Response Parameter
Parameter Name | Data Type | Description |
|---|---|---|
| string | The ID of the default storage that has been deleted. |
For an example response, see Sample Response.
Response and Error Code
Response Code | Condition |
|---|---|
200 | OK |
404 | Not Found (the UUID is invalid or can not be found) |
The above 200 OK response indicates that the default storage has been removed from the system. You can always use a get default storage request and confirm that the default storage has been removed.
Sample Request Path
{{baseURL}}/media/external-storages/92837437-53jg-6j47-h6gs-746ydhh39u78Sample Response
{
"deletedStorageUuid": "92837437-53jg-6j47-h6gs-746ydhh39u78"
}