v3

latestOpenAPI 3.0.3Apache 2.02026-07-312637031.3 MB
KYC Verification (deprecated)

Get verification result

Get verification result by ID.

This endpoint will be removed in API v1. Use GET /v0/verifications/{verification_id} instead.

get/customers/{customer_id}/verifications/{verification_id}

Path parameters

customer_idstring uuid required
Example:7d943c51-e4ff-4e57-9558-08cab6b963c7

The customer's unique identifier

verification_idstring uuid required
Example:7d943c51-e4ff-4e57-9558-08cab6b963c7

Verification's unique identifier.

Response

Verification result.

idstring uuid

Unique ID for this verification result.

issuesstring[]

List of potential problems found. These are subject to change.

result'ACCEPTED' | 'PROVIDER_FAILURE' | 'PROVISIONAL' | 'REJECTED' | 'REVIEW' required

The determination of this verification.

verification_timestring date-time required

The date and time the verification was completed.

verification_type'addressrisk' | 'alertlist' | 'decision' | 'documentverification' | 'emailrisk' | 'fraud' | 'kyc' | 'phonerisk' | 'social' | 'synthetic' | 'watchlistplus' | 'watchlistpremier' | 'watchliststandard' required

The type of check run on the customer.

Example response

{
  "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"
}