Get Single Card Verification
GET/v2/customers/:customerId/verifications/CARD/:verificationId
Returns card verification attempt information.
Request
Path Parameters
Customer id.
Verification attempt id.
Responses
- 200
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
- VERIFICATION_SUCCESS
- VERIFICATION_FAIL
Schema
Possible values: >= 4 characters
and <= 4 characters
, Value must match regular expression ^\d{4}$
Verificaton code present in the statement of previous transaction.
Card identifier.
Possible values: [VERIFICATION_CODE
]
Default value: VERIFICATION_CODE
Type of the card verification performed.
Card verification id.
Represents RFC 3339, section 5.6 date-time.
Possible values: [COMPLETED
, FAILED
]
Card verification status.
Possible values: [INVALID_CODE
, VERIFICATION_NOT_REQUIRED
, VERIFICATION_ATTEMPT_EXCEEDED
, VERIFICATION_ATTEMPT_24H_EXCEEDED
]
The reason for FAILED card verification.
Possible values: [SEPA_BANK_ACCOUNT
, UK_BANK_ACCOUNT
, US_BANK_ACCOUNT
, CCI_BANK_ACCOUNT
, CARD
]
Represents the type of the instrument.
| Value | Description| |---|---| | SEPA_BANK_ACCOUNT| SEPA Bank account | | UK_BANK_ACCOUNT | UK Bank account | | US_BANK_ACCOUNT | US Bank account | | CCI_BANK_ACCOUNT | CCI Bank account | | CARD | Card |
The remaining card verification attempts.
{
"verificationCode": "string",
"instrumentId": "1001",
"verificationType": "VERIFICATION_CODE",
"id": "2cb56b2749af52d6b257054ef3de0",
"creationTime": "2021-07-15T17:54:12Z",
"status": "COMPLETED",
"statusReason": "INVALID_CODE",
"instrumentType": "CARD",
"remainingAttempts": 0
}
{
"verificationCode": "1234",
"instrumentId": "1001",
"instrumentType": "CARD",
"verificationType": "VERIFICATION_CODE",
"id": "2cb56b2749af52d6b257054ef3de0",
"creationTime": "2021-07-15T17:54:12Z",
"expirationTime": "2021-07-15T17:54:12Z",
"status": "COMPLETED",
"remainingAttempts": 0
}
{
"verificationCode": "1234",
"instrumentId": "1001",
"instrumentType": "CARD",
"verificationType": "VERIFICATION_CODE",
"id": "2cb56b2749af52d6b257054ef3de0",
"creationTime": "2021-07-15T17:54:12Z",
"expirationTime": "2021-07-15T17:54:12Z",
"status": "FAILED",
"statusReason": "INVALID_CODE",
"remainingAttempts": 4
}
Not Found
- application/json
- Schema
- Example (from schema)
- Not found error
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"
}
]
}
}
{
"error": {
"code": "5269",
"message": "Entity not found",
"details": [
"The ID(s) specified in the URL do not correspond to the values in the system."
]
}
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Internal server error
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"
}
]
}
}
{
"error": {
"code": "1000",
"message": "Internal Error",
"details": [
"An internal error occurred."
]
}
}