curl --request POST \
--url http://localhost:3091/v1/api/qrcode/validate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"payload": "<string>"
}
'{
"valid": true,
"result": "VALID",
"reservationId": 123,
"type": "DEPOSIT",
"reservationNumber": "<string>",
"message": "<string>"
}Verifies QR signature and expiration
curl --request POST \
--url http://localhost:3091/v1/api/qrcode/validate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"payload": "<string>"
}
'{
"valid": true,
"result": "VALID",
"reservationId": 123,
"type": "DEPOSIT",
"reservationNumber": "<string>",
"message": "<string>"
}JWT access token from POST /v1/api/auth/login