Info API

You can find the full YAML swagger specification here

You can find the full JSON swagger specification here

Every API below requires an access token that you can retrieve using the Authorisation API

Info API

This API provides access to the final result of the SDK session. However, it is typically not required, as the SDK already returns this result and makes it directly available to your application.

Info API

get

Returns the information collected during the SDK session. Note: This endpoint it's only necessary when you use the QR code flow, see https://docs.uqudo.com/docs/getting-started/qr-code-app for details.

Path parameters
sessionIdstringRequiredPattern: [\p{XDigit}]{8}-[\p{XDigit}]{4}-[\p{XDigit}]{4}-[\p{XDigit}]{4}-[\p{XDigit}]{12}
Header parameters
AuthorizationstringRequired

Bearer token

Responses
200
String representing a JWS Compact Serialization, a representation of the JWS as a compact, URL-safe string
application/jwt
Responsestring
get
GET /api/v1/info/{sessionId} HTTP/1.1
Host: id.uqudo.io
Authorization: text
Accept: */*
text

Info API

get

Returns the information collected during the SDK session. Note: This endpoint it's only necessary when you use the QR code flow, see https://docs.uqudo.com/docs/getting-started/qr-code-app for details.

Header parameters
UQ-Session-IDstringRequired

Session ID

Pattern: [\p{XDigit}]{8}-[\p{XDigit}]{4}-[\p{XDigit}]{4}-[\p{XDigit}]{4}-[\p{XDigit}]{12}
AuthorizationstringRequired

Bearer token

Responses
200
String representing a JWS Compact Serialization, a representation of the JWS as a compact, URL-safe string
application/jwt
Responsestring
get
GET /api/v1/info HTTP/1.1
Host: id.uqudo.io
UQ-Session-ID: text
Authorization: text
Accept: */*
text

See SDK result for details about the JWS result

Info delete API

This endpoint allows you to delete the session data that has been cached without waiting for the automatic deletion. The session id is the value of the "jti" property of the JWS returned by the uqudo SDK.

Info delete API

delete

This endpoint allows you to delete the session data that have been cached without waiting for the automatic deletion. The session id is the value of the "jti" property of the JWS returned by the uqudo SDK.

Path parameters
sessionIdstringRequiredPattern: [\p{XDigit}]{8}-[\p{XDigit}]{4}-[\p{XDigit}]{4}-[\p{XDigit}]{4}-[\p{XDigit}]{12}
Header parameters
AuthorizationstringRequired

Bearer token

Responses
204
No Content
delete
DELETE /api/v1/info/{sessionId} HTTP/1.1
Host: id.uqudo.io
Authorization: text
Accept: */*

No content

Info image API

This endpoint allows you to download the image based on the resource id provided in the SDK result and returns directly the binary in the response

Info image API

get

The following API allows you to download the image based on the resource id provided in the SDK result

Path parameters
idstringRequired
Header parameters
AuthorizationstringRequired

Bearer token

Responses
200
Image file
image/jpeg
Responsestring · binary
get
GET /api/v1/info/img/{id} HTTP/1.1
Host: id.uqudo.io
Authorization: text
Accept: */*
binary

Last updated

Was this helpful?