Skip to main content
POST
/
api
/
v1
/
sellAndPays
/
validateQrCode
/
Validate QR Code
curl --request POST \
  --url https://skala-sandbox.ripio.com/api/v1/sellAndPays/validateQrCode/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "qrCode": "test_qr_code"
}'
{
  "merchantName": "Test Merchant"
}

Authorizations

Authorization
string
header
required

Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.

Body

application/json
qrCode
string
required

QR code data to validate. This contains the payment information that will be validated.

Minimum length: 1
Example:

"test_qr_code"

Response

QR code validated successfully

merchantName
string

Name of the merchant associated with the QR code.

Example:

"Test Merchant"

I