getThemes

get

/ccadmin/v1/themes

Get Themes. Returns a list of themes currently in the repository. Pass in query param ?type=custom to get all custom themes, or ?type=purchased to get all purchased themes. Omit type query param to get all themes.

Request

Supported Media Types
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : getThemes_response
Type: object
Show Source
Nested Schema : items
Type: array
The list of all themes.
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (application/json)
[
    {
        "thumbnail":"/img/cloudlake.jpg",
        "is_active":true,
        "notes":"This is the Cloud Lake Theme.",
        "clone_parent_name":null,
        "name":"Cloud Lake Theme",
        "repositoryId":"100001",
        "is_custom":false,
        "id":"100001",
        "clone_parent_id":null
    },
    {
        "thumbnail":"",
        "is_active":false,
        "notes":"This is the Dark Theme.",
        "clone_parent_name":"Cloud Lake Theme",
        "name":"Dark Theme",
        "repositoryId":"100002",
        "is_custom":true,
        "id":"100002",
        "clone_parent_id":"100001"
    }
]

Default Response

The error response
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top