Overview
public. Removes all files from the archive (wipe)
Return Codes
| Name | Value | Description |
| Forbidden | 403 | Administrator access is required |
| Ok | 200 | The request completed successfully |
Implementation Notes
Removing a file from the archive will cause it to be permanently deleted.
Code Samples
The following code example removes all files from the archive:
Plug p = Plug.New("http://deki-hayes/@api/deki");
p.At("users", "authenticate").WithCredentials("admin", "password").Get();
p.At("archive", "files").Delete();