Skip to main content

Delete an Identity

DELETE 

/iam/identities/:id

Calling this endpoint irrecoverably and permanently deletes the identity that is has been deleted already.

Request

Path Parameters

    id stringrequired

    ID is the identity's ID.

Responses

Empty responses are sent when, for example, resources are deleted. The HTTP status code for empty responses is typically 201.

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://connhex.com/iam/identities/:id");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Parameters
— pathrequired