When calling the Management API using the C# SDK, how do I change the HTTP method on the call?
Both of these methods are the same, the only difference is the HTTP method, GET vs. DELETE. GET seems to be the default.
GetUser
[/api/v2/users/{id}]
DeleteUser
[/api/v2/users/{id}]
Instantiation
this.ManagementApiClient = new ManagementApiClient(TokenResponse.AccessToken, _configuration.GetSection(“Auth0AuthApi”).GetChildren().FirstOrDefault(c => c.Key.Equals(“Domain”))?.Value);