v1

latestOpenAPI 3.0.12026-07-243686491.1 MB
Themes

Retrieve a list of themes

Required scope: themes:read </br>Organization authorization: supported

get/api/v1/themes

Query parameters

pageinteger

page number to retrieve (starts with 0)

perPageinteger

number of items per page (between 1 and 100, default 10)

operatorIdinteger nullable

Allows filtering themes by operatorId.</br>*Note:*The operatorId must be in the consumer’s operatorIds or, if empty, belong to the organization’s sub-operators.

Example:1

Response

List of themes that match the criteria

Example response

{
  "data": [
    {
      "id": 1,
      "name": "Custom Theme",
      "title": "Operator Custom Theme",
      "primaryColor": "#FF5733",
      "secondaryColor": "#FF5733",
      "logoUrl": "https://example.com/logo.png",
      "favIconUrl": "https://example.com/favicon.png",
      "operator": {
        "id": 1,
        "identifier": "operator-1",
        "themingEnabled": true
      }
    }
  ]
}