# Permanently delete all trashed configurations Permanently deletes all configurations currently in the trash for the requesting customer. This action is irreversible. ## Endpoint `DELETE /dcapi/configuration/trash/empty` ## Request ### Request URL `https://{server-hostname}:8383/dcapi/configuration/trash/empty` ### Scope `Configurations.DELETE` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** `string` — Mandatory - `application/emptyTrashStatus.v1+json` ### Sample Request ```curl curl --request DELETE \ --url https://appdomain/dcapi/configuration/trash/empty \ --header 'Accept: application/emptyTrashStatus.v1+json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### HTTP 200 #### Response Body `application/json` - `JSON object` - **status** `string` - Result of the operation — Success when completed successfully #### Sample Response All trashed configurations permanently deleted ```json { "status": "Success" } ``` ### HTTP 401 #### Response Body `application/json` - `JSON object` - **errorCode** `long` - Unauthorized error code returned when authentication credentials are missing, expired, or invalid (authentication=required) - **errorMsg** `string` - Authentication failure reason #### Sample Response User lacks Settings_Write role ```json { "error_description": "Access denied - You are not allowed to access the requested resource.", "error_code": "UAC_UNAUTHORIZED" } ``` ### Possible Response Codes - **200** — HTTP code - **401** — HTTP code ## Rate Limits **Duration:** 1 minute | **Threshold:** 30 | **Lock period:** 5 minutes Duration - Time window for the threshold. Threshold - Number of API calls allowed within the specified duration. Lock Period - Wait time before consecutive API requests.