GET api/2.0/settings/whitelabel/logos

Description

Returns the white label logos.

Parameters
Name Description Type Example
IsDark
sent in url
Specifies if the logo is for a dark theme or not Bool value true
IsDefault
sent in url
Specifies if the logo is for a default tenant or not Bool value true
Example
GET api/2.0/settings/whitelabel/logos?IsDark=true&IsDefault=true
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

White label logos

Example Response
{
  "status": 0,
  "response": [
    {
      "Name": "some text",
      "Path": {
        "Light": "some text",
        "Dark": "some text"
      }
    }
  ]
}