Skip to content

Get brands list

GetBrandsList

Description: Returns the list of configured brands.

Access Control

SESSION_ADMIN

HTTP Route

GET /brands

Response Parameters

Response contains rows, where each item may include:

Field Type Description
brand string Brand name
terminal_host string Terminal host
crm_host string CRM host
light_logo string Light logo path or URL
dark_logo string Dark logo path or URL
favicon string Favicon path or URL
status int Internal brand status
enable int Enable flag
create_time int Creation timestamp
settings object Brand settings object

Response Example

{
  "rows": [
    {
      "brand": "IonMarkets",
      "terminal_host": "https://terminal.ionmarkets.com",
      "crm_host": "https://crm.ionmarkets.com",
      "light_logo": "/images/ion-light.svg",
      "dark_logo": "/images/ion-dark.svg",
      "favicon": "/images/favicon.ico",
      "status": 1,
      "enable": 1,
      "create_time": 1698662400,
      "settings": {
        "primary_color": "#111111"
      }
    }
  ]
}