POST
/
v3
/
validate
csharp
using Prove.Proveapi;
using Prove.Proveapi.Models.Components;

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

V3ValidateRequest req = new V3ValidateRequest() {
    CorrelationId = "713189b8-5555-4b08-83ba-75d08780aebd",
};

var res = await sdk.V3.V3ValidateRequestAsync(req);

// handle response
{
  "evaluation": {
    "key": "{}"
  },
  "next": {
    "v3-challenge": "/v3/challenge"
  },
  "phoneNumber": "2001001686",
  "success": true,
  "challengeMissing": true
}
Use the following base URLs when integrating:https://platform.uat.proveapis.com - North America Sandbox Environmenthttps://platform.proveapis.com - North America Production Environment

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Successful request.

The response is of type object.