Skip to main content
Skip table of contents

Localized configurations

Localized public statistics

Request for loading the administrator panel, which is performed after Basic configurations

GET /api/admin/v1/static/localized
200 OK

Localized settings

JSON
{
    "notification": {
        "text": "Some notification",
        "is_force": true
    },
    "logos": [
        {
            "id": 1,
            "type": "login",
            "title": "Login page",
            "description": "Product logo on the login page of the web client and administrator",
            "url": "http://127.0.0.1:8080/storage/logos/ru/login.png",
            "version": 1
        },
        {
            "id": 11,
            "type": "background_auth_admin",
            "title": "Background image for the administrator cabinet login",
            "description": "The image is located on the administrator login page",
            "url": "http://127.0.0.1:8080/storage/images/background_auth_admin.png",
            "version": 1
        },
        {
            "id": 13,
            "type": "android_chrome_192x192_admin",
            "title": "android-chrome-192x192.png admin",
            "description": "For Android Chrome M39+ with screen density 4.0",
            "url": "http://127.0.0.1:8080/storage/favicons/admin/android-chrome-192x192.png",
            "version": 1
        },
        {
            "id": 15,
            "type": "android_chrome_512x512_admin",
            "title": "android-chrome-512x512.png admin",
            "description": "For Android Chrome M47+ Splash screen with screen density 4.0",
            "url": "http://127.0.0.1:8080/storage/favicons/admin/android-chrome-512x512.png",
            "version": 1
        },
        {
            "id": 17,
            "type": "apple_touch_icon_admin",
            "title": "apple-touch-icon.png admin",
            "description": "For iPhone and iPad home screen icons",
            "url": "http://127.0.0.1:8080/storage/favicons/admin/apple-touch-icon.png",
            "version": 1
        },
        {
            "id": 19,
            "type": "favicon_16x16_admin",
            "title": "favicon-16x16.png admin",
            "description": "For desktop browsers, a classic favicon displayed in tabs",
            "url": "http://127.0.0.1:8080/storage/favicons/admin/favicon-16x16.png",
            "version": 1
        },
        {
            "id": 21,
            "type": "favicon_32x32_admin",
            "title": "favicon-32x32.png admin",
            "description": "For desktop browsers, a classic favicon displayed in tabs",
            "url": "http://127.0.0.1:8080/storage/favicons/admin/favicon-32x32.png",
            "version": 1
        },
        {
            "id": 23,
            "type": "favicon_admin",
            "title": "favicon.ico admin",
            "description": "For desktop browsers, a classic favicon displayed in tabs",
            "url": "http://127.0.0.1:8080/storage/favicons/admin/favicon.ico",
            "version": 1
        },
        {
            "id": 25,
            "type": "mstile_150x150_admin",
            "title": "mstile-150x150.png admin",
            "description": "For Windows 8/Internet Explorer 11",
            "url": "http://127.0.0.1:8080/storage/favicons/admin/mstile-150x150.png",
            "version": 1
        },
        {
            "id": 27,
            "type": "safari_pinned_tab_admin",
            "title": "safari-pinned-tab.svg admin",
            "description": "For bookmarks in Safari browser in iOS for the admin panel",
            "url": "http://127.0.0.1:8080/storage/favicons/admin/safari-pinned-tab.svg",
            "version": 1
        }
    ]
}
401 Unauthorized

Authorization token is not provided or is invalid

cURL
BASH
curl -k --request POST \
	--url 'https://your-domain/api/admin/v1/static/localized' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--data '[]'
PHP
PHP
$data = array (
);
$context = stream_context_create([
	'ssl'=>['verify_peer' => false],
	'http' => [
		'method' => 'GET',
		'header' => "Content-Type: application/json\r
Accept: application/json",
		'content'=>json_encode($data)
	]
]);
$result = file_get_contents('https://your-domain/api/admin/v1/static/localized', false, $context);
JavaScript errors detected

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

If this problem persists, please contact our support.