using Prove.Proveapi;
using Prove.Proveapi.Models.Components;
var sdk = new ProveAPI(auth: "<YOUR_AUTH_HERE>");
V3ChallengeRequest req = new V3ChallengeRequest() {
CorrelationId = "713189b8-5555-4b08-83ba-75d08780aebd",
Dob = "1981-01",
Ssn = "0596",
};
var res = await sdk.V3.V3ChallengeRequestAsync(req);
// handle response{
"success": true,
"next": {
"v3-complete": "/v3/complete"
},
"evaluation": {
"authentication": {
"result": "pass"
},
"identification": {
"result": "pass"
},
"success": true
}
}This endpoint allows you to submit challenge information.
using Prove.Proveapi;
using Prove.Proveapi.Models.Components;
var sdk = new ProveAPI(auth: "<YOUR_AUTH_HERE>");
V3ChallengeRequest req = new V3ChallengeRequest() {
CorrelationId = "713189b8-5555-4b08-83ba-75d08780aebd",
Dob = "1981-01",
Ssn = "0596",
};
var res = await sdk.V3.V3ChallengeRequestAsync(req);
// handle response{
"success": true,
"next": {
"v3-complete": "/v3/complete"
},
"evaluation": {
"authentication": {
"result": "pass"
},
"identification": {
"result": "pass"
},
"success": true
}
}The access token received from the /token endpoint. Refer to the Authentication page for more details.
The unique ID that Prove generates for the flow. It is returned from the Start endpoint and cannot be reused outside of a single flow.
"713189b8-5555-4b08-83ba-75d08780aebd"
The date of birth in one of these formats: YYYY-MM-DD, YYYY-MM, or MM-DD. Acceptable characters are: numeric with symbol '-'.
"1981-01"
The full or last 4 numbers of the social security number. Acceptable characters are: numeric.
"0596"
Successful request.
The next set of allowed calls in the same flow.
Show child attributes
{ "v3-complete": "/v3/complete" }True if the challenge was accepted and user info retrieved.
true
The evaluation result for the policy. This is an upcoming field but is not yet enabled.
Show child attributes
Show child attributes
{
"firstName": "Tod",
"lastName": "Weedall",
"addresses": [
{
"address": "39 South Trail",
"city": "San Antonio",
"extendedAddress": "Apt 23",
"postalCode": "78285",
"region": "TX"
},
{
"address": "4861 Jay Junction",
"city": "Boston",
"extendedAddress": "Apt 78",
"postalCode": "02208",
"region": "MS"
}
],
"emailAddresses": ["jdoe@example.com", "dsmith@example.com"],
"dob": "1981-01-17T00:00:00.000Z",
"ssn": "265228370"
}Was this page helpful?