Complete flow
Send this request to verify the user and complete the flow. It will return a correlation ID, user information, and the next step to call in the flow. There is a validation check that requires at least first + last name or SSN passed in, else an HTTP 400 is returned. Additionally, specific to the Pre-Fill® or Prove Identity® with KYC use case, you need to pass in first name, last name, DOB and SSN (or address) to ensure you receive back the KYC elements and correct CIP values.
Welcome to the Prove Platform documentation. This documentation applies if you use the client-side SDK and Prove Platform APIs.
For access to classic documentation, contact support@prove.com
or your Prove representative.
Prove Pre-Fill and Prove Identity are available in the United States and Canada. Verified Users is available in additional countries.
Use the following base URLs when integrating Prove Pre-Fill or Prove Identity:
https://platform.uat.proveapis.com
- North America Staging Environment
https://platform.proveapis.com
- North America Production Environment
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
Correlation ID is 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"
{
"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-17",
"ssn": "265228370"
}
Response
Next contains the next set of allowed calls in the same flow.
{ "done": "done" }
Success returns true if the individual was verified successfully.
true
{
"multiCIPConfidence": "multiCIPConfidence",
"dataSource2": {
"cipConfidence": "cipConfidence",
"reasonCodes": ["reasonCodes", "reasonCodes"],
"address": {
"distance": 6.027456183070403,
"city": true,
"streetNumber": 1,
"street": true,
"postalCode": true,
"region": true,
"addressScore": 0
},
"identifiers": { "last4": true, "dob": true, "ssn": true },
"name": {
"firstName": 5,
"lastName": 5,
"nameScore": 2
},
"email": { "emailAddress": true }
},
"dataSource1": {
"cipConfidence": "cipConfidence",
"reasonCodes": ["reasonCodes", "reasonCodes"],
"address": {
"distance": 6.027456183070403,
"city": true,
"streetNumber": 1,
"street": true,
"postalCode": true,
"region": true,
"addressScore": 0
},
"identifiers": { "last4": true, "dob": true, "ssn": true },
"name": {
"firstName": 5,
"lastName": 5,
"nameScore": 2
},
"email": { "emailAddress": true }
}
}
{
"totalHits": 9,
"amlTypeLists": [
{
"listHits": 7,
"amlType": "amlType",
"fields": [
{
"name": "name",
"source": "source",
"value": "value"
},
{
"name": "name",
"source": "source",
"value": "value"
}
]
},
{
"listHits": 7,
"amlType": "amlType",
"fields": [
{
"name": "name",
"source": "source",
"value": "value"
},
{
"name": "name",
"source": "source",
"value": "value"
}
]
}
]
}