Get the current status of a QR Code
Possible statuses: pending, approved, expired, rejected. This endpoint is usually polled every few seconds by the initiating device until the QR Code is approved or expired.
Path parameters
qrCodeIdstring · uuidRequired
The unique identifier of the QR Code session.
Header parameters
Brand-URLstringRequiredExample:
The brand URL of the request. This is used to identify the brand.
YOUR_BRAND_URL
Responses
200
The request was successful.
application/json
429
API call exceeded rate limit due to too many requests.
application/json
get
GET /api/v1/users/auth/passwordless/qrcode/{qrCodeId} HTTP/1.1
Host: protocol.jframework.io
Brand-URL: text
Accept: */*
{
"success": true,
"statusCode": 200,
"message": "The request was successful.",
"data": {
"id": "4c387924-0df1-4e53-af9e-156fad3d1351",
"status": "New",
"approvedAt": null
},
"errors": []
}
Last updated
Was this helpful?