Skip to main content

CreateAppConfigDto

appIdnumberrequired

The ID of the panel application

Example: 1
namestringrequired

The name of the configuration

Example: Default View
levelAppConfigLevel (string)required

The level of the configuration

Possible values: [user, app]

Example: user
viewContentobjectrequired

The view configuration content as JSON

Example: {"layout":"grid","theme":"dark"}
dry_runboolean

If true, perform a dry run without actually creating the app config

CreateAppConfigDto
{
"appId": 1,
"name": "Default View",
"level": "user",
"viewContent": {
"layout": "grid",
"theme": "dark"
},
"dry_run": true
}