Skip to main content
POST
/
payment
/
verify-card
Verify NFC card
curl --request POST \
  --url https://olive-gateway-a6ba.onrender.com/api/v1/payment/verify-card \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "card_serial": "CARD0001",
  "pin": "1234"
}
'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json

Card verification details

card_serial
string
required

Supports any alphanumeric: CARD0001, 48290173K, etc.

Example:

"CARD0001"

pin
string
required
Example:

"1234"

Response

Card verified

The response is of type object.