Check QR Session Status
GET/v1/client/qr-auth/status/:token
Check QR Session Status
Request
Path Parameters
token stringrequired
Query Parameters
artifactId stringrequired
The artifactId of the library used to scan the QR code (optional)
Example: android-qr-scanner-sdk
artifactVersion stringrequired
The version of the library used to scan the QR code (optional)
Example: 1.0.20230705123456
Responses
- 200
- 404
- 410
Session status retrieved.
- application/json
- Schema
- Example (from schema)
Schema
authenticated booleanrequired
Indicates if the QR session is authenticated
tokens object
authToken stringrequired
JWT Authentication Token
refreshToken stringrequired
Refresh Token
{
"authenticated": true,
"tokens": {
"authToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refreshToken": "dGhpc2lzYXJlZnJlc2h0b2tlbmV4YW1wbGU..."
}
}
Session not found.
Session expired.
Loading...