KYC Verification (deprecated)
List verification results
List verification results.
This endpoint will be removed in API v1. Use GET /v0/verifications?customer_id={customer_id} instead.
get/customers/{customer_id}/verifications
Path parameters
customer_idstring uuid required
Example:7d943c51-e4ff-4e57-9558-08cab6b963c7
The customer's unique identifier
Query parameters
page_tokenstring
Optional pagination token to be provided to retrieve subsequent pages, returned from previous get
Example:a8937a0d
limitinteger
Maximum number of objects to return per page. If the limit is greater than 100, then it will be set to 100.
Example:100
include_historyboolean
If true, include old (inactive) records as well.
Response
List of customer verification results.
Example response
{
"verifications": [
{
"id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
"issues": [
"R186: Global Watchlist sources selected are correlated with the input identifiers"
],
"raw_response": {
"provider": "SOCURE",
"raw_data": "{}"
},
"result": "ACCEPTED",
"vendor_info": {
"details": [
{
"code": "R186",
"description": "Global Watchlist sources selected are correlated with the input identifiers"
}
],
"vendor": "IDOLOGY"
},
"verification_type": "kyc"
}
],
"next_page_token": "a8937a0d"
}