Themes
This endpoint is useful for working with Adaptix themes.
Get theme
Returns directly the zip file in the response with the application/zip
header on success or a JSON response body with error messages on fail. The PHP API library will save the zip file to the system temporary directory and provides you with the path.
HTTP Request
GET /themes/THEME_NAME
Response
Expected Response Code: 200
Set Temporary File Path
Changes the default temporary directory where the zip file is created. The directory is created if it does not exist.
Get List of themes
Lists all installed themes with the detailes stored in their config.json files.
HTTP Request
GET /themes
Response
Expected Response Code: 200
See JSON code example.
Response Properties
Name | Type | Description |
---|---|---|
themes | array | List of installed themes and their configs |
Create Theme
Creates a new theme or updates an existing one (based on the file name) from provided zip file.
HTTP Request
POST /themes/new
Response
Expected Response Code: 200
Delete File
Delete a theme. The stock themes cannot be deletedHTTP Request
DELETE /themes/THEME_NAME/delete
Response
Expected Response Code: 200