Skip to content

Instantly share code, notes, and snippets.

@justintoth
Created February 25, 2013 22:03
Show Gist options
  • Save justintoth/5033755 to your computer and use it in GitHub Desktop.
Save justintoth/5033755 to your computer and use it in GitHub Desktop.
private static CreateAccountResponse CreateAccount() {
var url = APIUrl + "/accounts";
var responseJson = WebRequestHelper.PostWithAuth(url);
return JsonConvert.DeserializeObject<CreateAccountResponse>(responseJson);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment