Create Or Update Portlet Config

Create Or Update Portlet Config

Updates the portlet config corresponding to the UUID.

Request
URI
PUT
https://{api_host}/api/portletconfigurations/{id}
COPY
Path Parameters
string
id
Required

The UUID of the config to update


Request Body

The portlet config to update

PortletConfiguration of type(s) application/json
Required
{
    "mode": "string",
    "id": "string",
    "state": "string",
    "extensionId": "string",
    "portletPreferences": {
        "portletPreferences": {
            "portletPreferenceValues": [
                {
                    "value": "string"
                }
            ],
            "key": "string"
        }
    }
}
string
mode
Optional

mode

string As uuid As uuid
id
Optional

id

string
state
Optional

state

Possible values are : NORMAL, MINIMIZED, MAXIMIZED,
string
extensionId
Optional

extensionId

object
portletPreferences
Optional

portletPreferences

Responses
200

successful operation

Operation doesn't return any data structure

Code Samples
COPY
                    curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/api/portletconfigurations/{id}