Skip to content

Instantly share code, notes, and snippets.

@dmitry-mukhin
Created December 16, 2014 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmitry-mukhin/d516eef3ec9f6fb74acb to your computer and use it in GitHub Desktop.
Save dmitry-mukhin/d516eef3ec9f6fb74acb to your computer and use it in GitHub Desktop.
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