POST
/
v3
/
identity
/
{identityId}
/
deactivate
csharp
using Prove.Proveapi;
using Prove.Proveapi.Models.Components;

var sdk = new ProveAPI(auth: "<YOUR_AUTH_HERE>");

var res = await sdk.Identity.V3DeactivateIdentityAsync(
    identityId: "<id>",
    v3IdentityDeactivateRequest: new V3IdentityDeactivateRequest() {
        ClientRequestId = "71010d88-d0e7-4a24-9297-d1be6fefde81",
    }
);

// handle response
{
  "success": true
}

Authorizations

Authorization
string
header
required

The access token received from the /token endpoint. Refer to the Authentication page for more details.

Path Parameters

identityId
string
required

A Prove-generated unique ID for a specific identity.

Body

application/json

Request body for the V3 Deactivate Identity API.

Response

200
application/json

V3DeactivateIdentityResponse

Response body for the V3 Deactivate Identity API.