GET
/
payments
/
verifications
/
{verificationId}
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": "VALID",
    "accountHolderName": {
      "verifiedName": "<string>",
      "matchStatus": "MATCH"
    }
  },
  "failureReason": "BANK_NOT_SUPPORTED"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

verificationId
string
required

Response

200 - application/json

Account verification details returned successfully

The response is of type object.