CreateAppConfigDto
appIdnumberrequired
The ID of the panel application
Example:
1namestringrequired
The name of the configuration
Example:
Default ViewlevelAppConfigLevel (string)required
The level of the configuration
Possible values: [user, app]
Example:
userviewContentobjectrequired
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
}