GET
/
payments
/
verifications
/
{verificationId}
Get account verification
curl --request GET \
  --url https://api.paysway.dev/payments/verifications/{verificationId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "state": "PENDING",
  "result": {
    "accountStatus": "ACTIVE",
    "accountHolderName": {
      "verifiedName": "<string>",
      "matchStatus": "MATCH"
    }
  },
  "failureReason": "INVALID_FIELD"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

verificationId
string<uuid>
required

Response

200 - application/json

Account verification details returned successfully

id
string<uuid>
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
state
enum<string>
required
Available options:
PENDING,
COMPLETED,
FAILED
result
object
failureReason
enum<string>
Available options:
INVALID_FIELD,
UNAVAILABLE_FINANCIAL_INSTITUTION,
UNSUPPORTED_FINANCIAL_INSTITUTION,
UNEXPECTED_ERROR