Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. string URLRequest = URL + customer_id + "/cards";
  2. HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URL);
  3. request.Headers.Add("...");
  4. request.Method = "POST";
  5. request.ContentType = "application/json";
  6. request.Accept = "application/json";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement