GET ALL QR THEME

Query all QR code themes associated with the given customer API key

QUERY ALL

GET https://api.eyelevel.ai/v1/partner/theme/qr/:apiKey

Path Parameters

NameTypeDescription

apiKey

string

EyeLevel customer key

{
    "count": INTEGER,
    "themes": [
        { THEME OBJECT }
    ]
}

Response

{
    "count": INTEGER,
    "qrThemes": [
        {
            "qrThemeId":      INTEGER IDENTIFIER,
            "name":           "STRING",
            "background":     "STRING",
            "foreground":     "STRING",
            "hasBorder":      BOOLEAN,
            "imageUrl":       "STRING",
            "textIdentifier": "STRING",
            "updated":        DATETIME
        }
    ]
}

qrThemeId

The unique identifier for the QR code theme. You can use this id in other QR code theme API requests.

name

The human readable name for the QR code theme.

background

The background color of the QR code.

foreground

The foreground color of the QR code.

hasBorder

Setting this attribute true will add a margin around the edges of the QR code with the background color.

imageUrl

The URL for the hosted image. This image will be applied to the center of the QR code.

textIdentifier

A human readable string that is displayed below the QR code.

updated

The datetime the QR code theme was last updated in RFC3339 format.

Objects

pageQR THEME

Last updated