using RestSharp;
var options = new RestClientOptions("https://platform.uat.proveapis.com/v3/identity/{identityId}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.DeleteAsync(request);
Console.WriteLine("{0}", response.Content);{
"success": true
}Disenrolls an identity from Identity Manager. If you wish to monitor in future, re-enrollment of that identity is required.
using RestSharp;
var options = new RestClientOptions("https://platform.uat.proveapis.com/v3/identity/{identityId}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.DeleteAsync(request);
Console.WriteLine("{0}", response.Content);{
"success": true
}Documentation Index
Fetch the complete documentation index at: https://developer.prove.com/llms.txt
Use this file to discover all available pages before exploring further.
The access token received from the /token endpoint. Refer to the Authentication page for more details.
A Prove-generated unique ID for a specific identity.
A client-generated unique ID for a specific session. This can be used to identify specific requests. The format of this ID is defined by the client - Prove recommends using a GUID, but any format can be accepted. Do not include Personally Identifiable Information (PII) in this field.
V3DisenrollIdentityResponse
Response body for the V3 Disenroll Identity API.
If true, the disenroll operation was successful.
true
Related topics
Deactivate IdentityPre-Fill for Business ManagePre-Fill for Consumers ManageVerified User ManageHuman Assurance ManageWas this page helpful?