Check Pan Pinfl Match
Checks whether the given phone number belongs to the CARD or Not.
Returns true if they match, returns false if the phone number is incorrect
Endpoint Details
Method:
POST
URL: BASE_URL/merchant/userCard/checkPhoneMatch/
Header:
http
Authorization: Bearer <ACCESS_TOKEN>Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| cardId | string | Yes | Paylov cardId |
| phone | string | Yes | Phone Number |
Example
json
{
"cardId": "9630bd63-2149-4831-88a4-d1857309c88e",
"phone": "+998912345678"
}Success response
json
{
"result": {
"match": true # if matches true else false
}
}Error response:
json
{
"error": {
"code": "permission_denied",
"message": "permission_denied"
}
}