The following endpoints allow you to inspect the settings of your Make platform instance.
curl -L \ --url 'https://eu1.make.com/api/v2/admin/system-settings/custom-themes'
{ "themes": [ { "name": "text", "id": "text", "color": "text", "isActive": true, "type": "SYSTEM", "parentSystemTheme": "text" } ] }
Numeric ID of the custom-theme
curl -L \ --request DELETE \ --url 'https://eu1.make.com/api/v2/admin/system-settings/custom-theme/{id}' \ --header 'Authorization: YOUR_API_KEY'
No Content
Numeric ID of the custom-theme or system theme name
curl -L \ --request PUT \ --url 'https://eu1.make.com/api/v2/admin/system-settings/theme/{id}/activate' \ --header 'Authorization: YOUR_API_KEY'
Gets the default organization license for your Make White Label instance. Make uses the default organization license when you create a new organization without specifying the organization's license.
curl -L \ --url 'https://eu1.make.com/api/v2/admin/system-settings/default-license' \ --header 'Authorization: YOUR_API_KEY'
{ "defaultLicense": { "dslimit": 40, "fslimit": 2147483648, "iolimit": 10000, "apiLimit": 2000, "dsslimit": 524288000, "fulltext": true, "interval": 1, "transfer": 1099511627776, "operations": 80000000, "scenarioIO": true, "gracePeriod": 0, "executionTime": 45, "restartPeriod": "1 month", "customVariables": true, "creatingTemplates": true, "installPublicApps": true, "productManagement": "salesforce", "onDemandScheduling": true } }
name of theme
blue
orange
green
black
red
silver
violet
curl -L \ --request POST \ --url 'https://eu1.make.com/api/v2/admin/system-settings/custom-theme' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "name": "text", "parentSystemTheme": "blue", "activeConfiguration": {} }'
{ "customTheme": { "name": "text", "id": 1, "color": "text", "isActive": true, "type": "CUSTOM", "parentSystemTheme": "blue", "activeConfiguration": {}, "draftConfiguration": {} } }
curl -L \ --request PATCH \ --url 'https://eu1.make.com/api/v2/admin/system-settings/custom-theme/{id}' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "name": "text", "parentSystemTheme": "blue", "activeConfiguration": {}, "draftConfiguration": {} }'
{ "customTheme": { "name": "text", "id": 1, "color": "text", "type": "CUSTOM", "isActive": true, "parentSystemTheme": "text", "activeConfiguration": {}, "draftConfiguration": {} } }