Skip to main content
Skip table of contents

Configurations for the downloads page

The availability of this page is determined by the is_download_available parameter from the request, see Basic Configurations.

Contains a link to download the thick client.

Contains a link to download public documents.

Contains a link to mobile clients.

Each array can be empty and the fat client object will be null, since not everything will always be available.


GET/api/v1/static/download
Headers
Authorization
Bearer token
Accept
application/json
X-Client
ios-cctv|android-cctv|thick-legal|web
X-UUID
unique device id
Response
200

JSON
{
    "documents": [
        {
            "title": "logo_doc",
            "description": "desc_logo_doc",
            "url": "http://domain.com/client_header.svg"
        },
        {
            "title": "logo_doc",
            "description": "http://domain.com/client_header.svg"
        }
    ],
    "thick_client": {
        "id": 1,
        "name": "logo_doc",
        "description": "desc_logo_doc",
        "url": "http://domain.com/client_header.svg",
        "major_version": 1,
        "minor_version": 1,
        "revision_version": 1,
        "build_version": 1,
        "is_published": 1,
        "created_at": "2022-09-22 12:17:59"
    },
    "clients": [
        {
            "link": "http://domain.com",
            "type": "huawei"
        }
    ],
    "qr" : "schema://connection/somedata"
}
401
Authorization token not provided or invalid
Example
JSON
curl -k --location --request GET 'https://vms.local/api/v1/static/download' \
--header 'Authorization:Bearer token' \
--header 'Accept:application/json' \
--header 'X-Client:ios-cctv|android-cctv|thick-legal|web' \
--header 'X-UUID:unique device id'
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.