using Prove.Proveapi;
using Prove.Proveapi.Models.Components;
var sdk = new ProveAPI(auth: "<YOUR_AUTH_HERE>");
var res = await sdk.Identity.V3ActivateIdentityAsync(
identityId: "<id>",
v3ActivateIdentityRequest: new Prove.Proveapi.Models.Components.V3ActivateIdentityRequest() {
ClientRequestId = "71010d88-d0e7-4a24-9297-d1be6fefde81",
}
);
// handle response{
"success": true
}Sets an identity as active for monitoring.
using Prove.Proveapi;
using Prove.Proveapi.Models.Components;
var sdk = new ProveAPI(auth: "<YOUR_AUTH_HERE>");
var res = await sdk.Identity.V3ActivateIdentityAsync(
identityId: "<id>",
v3ActivateIdentityRequest: new Prove.Proveapi.Models.Components.V3ActivateIdentityRequest() {
ClientRequestId = "71010d88-d0e7-4a24-9297-d1be6fefde81",
}
);
// handle response{
"success": true
}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.
Request body for the V3 Activate Identity API.
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.
"71010d88-d0e7-4a24-9297-d1be6fefde81"
V3ActivateIdentityResponse
Response body for the V3 Activate Identity API.
If true, the activate operation was successful.
true
Was this page helpful?