Exemple #1
0
 public async Task DeleteCspCustomerAsync(string CustomerId)
 {
     string token  = REST.getCspToken();
     string url    = "https://api.partnercenter.microsoft.com/v1/customers/" + CustomerId;
     string method = "DELETE";
     await REST.sendHttpRequestAsync(method, url, token);
 }