Created
December 16, 2014 16:49
-
-
Save dmitry-mukhin/d516eef3ec9f6fb74acb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var client = new RestClient("https://api.uploadcare.com"); | |
var request = new RestRequest("files/{uuid}/storage/", Method.DELETE); | |
request.AddHeader("Authorization", "Uploadcare.Simple demopublickey:demoprivatekey"); | |
// execute the request | |
RestResponse response = client.Execute(request); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment