Skip to content

Check Pan Pinfl Match

Checks whether the card owner's PINFL matches the provided PINFL.
Returns true if they match, returns false if the PINFL is incorrect

Endpoint Details

Method: POST
URL: BASE_URL/merchant/userCard/checkPinflMatch/
Header:

http
Authorization: Bearer <ACCESS_TOKEN>

Request Body

FieldTypeRequiredDescription
cardIdstringYesPaylov cardId
pinflstringYesUser PINFL

Example

json
{
  "cardId": "9630bd63-2149-4831-88a4-d1857309c88e",
  "pinfl": "52612000000009"
}

Success response

json
{
  "result": {
          "match": true  # if matches true else false   
  }
}

Error response:

json
{
  "error": {
    "code": "permission_denied",
    "message": "permission_denied"
  }
}