Skip to main content
POST
/
payments
/
bank-validation
/
verify-uk-account-holder
Verify UK account holder name
curl --request POST \
  --url https://api.pcxpay.com/v1/payments/bank-validation/verify-uk-account-holder \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "userName": "John Smith",
  "accessToken": "<string>"
}
'
{
  "success": true,
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
userName
string
required

Full name to verify

Example:

"John Smith"

accessToken
string
required

TrueLayer access token from the OAuth callback

Response

Verification result

success
boolean
data
object