Configuration API
Configuration Valid
It checks if the specified configuration is valid (= if the extension can be activated during consultation)
GET/extensions/configuration/validation/extensionId
| Query parameters | application(optional, default="server"): id of the application (for the application section); "server" is reserved for server configuration |
| Header | auth-token: token from authentication |
| Header/Parameter | tenant |
| Body | None |
| Returns | true or false |
| Required role | MWP_ADMIN, KBA_MANAGER |
| Managed errors | 401: insufficient privileges |
Example request
curl 'http://localhost:8080/mwp/rest/extensions/configuration/validation/dashboard?application=server' -H 'auth-token: 7f91498c-036f-4500-b4e1-94ec43a85713' -H 'tenant:default'
Example response
{
"complete":true
}