Discover the conventions as well as various error and status codes generated by Prove Link℠.

API Conventions

The service follows consistent API conventions. A couple to note for API responses:

  • Optional fields that have no values are not returned - we don't use null or empty values.
  • JSON maps that have no values are not returned - we don't return fields with empty maps.
  • JSON arrays that have no values are not returned - we don't return fields with empty arrays.

HTTP Status Codes

The following table contains a list of the HTTP status codes returned by the Prove services:

CodeDefinitionDescription
200OKRequest completed successfully.
400Bad RequestThere was a problem with the submitted request.
401UnauthorizedThe request lacks valid authentication credentials for the target resource.
403ForbiddenThe client does not have permission to access the target resource.
404Not FoundThe server did not find anything matching the Request-URI.
500Internal Server ErrorThe server encountered an unexpected condition preventing it from fulfilling the request. Retry the request, and if the problem persists, contact Prove® support.

API Error Codes

When a Prove API encounters a request error, the JSON response object includes a code field and a message field to provide further context.

The table below contains a list of the API error codes:

Error CodeDescriptionResolution Path
8000Internal ErrorThe server encountered an unexpected condition preventing it from fulfilling the request. Retry the request, and if the problem persists, contact Prove® support.
8001Malformed RequestEnsure the request is valid JSON, is under 4KB in size, and correct any invalid parameters. Invalid parameters will be specified with reason in the message field.
8002Unauthorized RequestThe request lacks valid authentication credentials for the target resource - ensure the correct credentials were used.
8003Step Called Out of OrderThe request called an endpoint out of order. Check the previous next field for the proper endpoint to call.
8007Sandbox User Not FoundEnsure in Sandbox environment, only test user information is used as input for requests unless otherwise specified in the test cases.
8008Invalid Correlation IDEnsure the correct Correlation ID is used as input for all endpoints other than Start. The Correlation ID is unique per user/session and should not be used across transactions.

Example Success and Error Error Responses

This is not an exhaustive list of the response bodies, but it does show the majority of them when interacting with the API.

EndpointHTTP CodeResponse Body
Any400{"code":8001,"message":"field 'correlationId' length cannot be greater than 36 characters"}
Any401{"code":8002,"message":"not authorized"}
Any403{"code":8003,"message":"step not allowed"}
Any403{"code":8008,"message":"correlationId is expired or invalid"}
Any500{"code":8000,"message":"error at prove, try again later"}
Start200{"correlationId":"0a53cbf8-4053-4d6a-9ef4-ebebc8f26811","authToken":"eyJ...","next":{"v3-validate":"/v3/validate"}}
Start400{"code":8001,"message":"field 'flowType' is missing"}
Start400{"code":8001,"message":"field 'flowType' must be one of these values: desktop mobile"}
Start400{"code":8001,"message":"field 'ssn' length cannot be greater than 9 characters"}
Start400{"code":8001,"message":"field 'ssn' must be numeric"}
Start400{"code":8001,"message":"field 'dob' must be in date format: YYYY-MM-DD, YYYY-MM, or MM-DD"}
Validate200{"success":true,"challengeMissing":false,"phoneNumber":"2001001686","next":{"v3-challenge":"/v3/challenge"}}
Validate200{"success":true,"challengeMissing":false,"phoneNumber":"2001001686","next":{"v3-complete":"/v3/complete"}}
Validate200{"success":false,"challengeMissing":false,"next":{"done":"done"}}
Validate200{"success":true,"challengeMissing":true,"phoneNumber":"2001001686","next":{"v3-challenge":"/v3/challenge"}}
Challenge200{"success":true,"individual":{USER INFO...},"next":{"v3-complete":"/v3/complete"}}
Challenge200{"success":false,"next":{"v3-complete":"/v3/complete"}}
Challenge400{"code":8001,"message":"field 'ssn' length cannot be greater than 9 characters"}
Challenge400{"code":8001,"message":"field 'ssn' must be numeric"}
Challenge400{"code":8001,"message":"field 'dob' must be in date format: YYYY-MM-DD, YYYY-MM, or MM-DD"}
Complete200{"success":true,"next":{"done":"done"}}
Complete200{"success":false,"next":{"done":"done"}}
Complete400{"code":8001,"message":"field 'ssn' length cannot be greater than 9 characters"}
Complete400{"code":8001,"message":"field 'dob' must be in date format: YYYY-MM-DD, YYYY-MM, or MM-DD"}

Retry Behavior after Errors

When a status code other than a 200 is returned, you can fix the request and resubmit/retry the request. The only exception is when you receive a 200, if you retry a request, you will receive a HTTP 403 with either:

  • Step Called Out of Order
  • Correlation ID is Expired or Invalid

📘

The APIs are stateful, so retries are not allowed to ensure proper behavior and to mitigate issues with replay attacks.