Exemple #1
0
        public void DeleteCspCustomer(string CustomerId)
        {
            string token  = REST.getCspToken();
            string url    = "https://api.partnercenter.microsoft.com/v1/customers/" + CustomerId;
            string method = "DELETE";

            REST.sendHttpRequest(method, url, token);
        }