Get KYC verification status
GET/kyc/customers/:customerId/verification-status
Get Customer Verification Status
Request
Path Parameters
Merchant's Paysafe wallet customer id
Responses
- 200
- 400
- 404
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
Merchant's Paysafe wallet customer id
Possible values: non-empty
and <= 40 characters
Customer identifier used in Partner system.
Possible values: [INCOMPLETE
, IN_PROGRESS
, COMPLETED
]
Default value: INCOMPLETE
COMPLETED
- Customer is verified successfully.
IN_PROGRESS
- Customer verification is in progress. The verification results are not ready
or additional manual verification process is in progress.
INCOMPLETE
- Customer is not verified.
{
"customerId": "string",
"externalId": "af5c8b52-0afd-4799-85ab-fe659a076932",
"kycVerificationStatus": "COMPLETED"
}
{
"customerId": "5609349232",
"externalId": "af5c8b52-0afd-4799-85ab-fe659a076932",
"kycVerificationStatus": "COMPLETED"
}
Bad Request
Not Found
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
error
object
Represents details of an error.
The error code.
The description of the error.
Details for the errors of any parameter value.
fieldErrors
object[]
List of field errors associated with the main error.
Identifies the JSON request field.
The problem associated with the field.
{
"error": {
"code": "string",
"message": "string",
"details": [
"string"
],
"fieldErrors": [
{
"field": "string",
"error": "string"
}
]
}
}