Skip To Content

Update (system limits)

Description

The update operation updates one or more system limits in a specific category.

Note:

Only limits that are included in the request will be updated.

Request parameters

ParameterDetails
properties

A JSON array containing one or more limits of a specific category that will be updated.

Syntax:

[{"limitName":"UpdateInsightsUserLimit","numLimit": <number>},
{"limitName":"UpdateInsightsOrgLimit","numLimit":<number>},
{"limitName":"ExecuteNotebooksUserLimit","numLimit":<number>},
{"limitName":"ExecuteNotebooksOrgLimit","numLimit":<number>},
{"limitName":"ExecuteWorkflowManagerUserLimit","numLimit":<number>},
{"limitName":"ExecuteWorkflowManagerOrgLimit","numLimit":<number>}]

Example:

properties = [{"limitName": "ExecuteNotebooksUserLimit", "numLimit": 15 },
{ "limitName": "ExecuteNotebooksOrgLimit", "numLimit": 45 } ]

category

The category of limits that will be updated.

Values: ScheduleTask

f

The response format. The default response format is html.

Values: html | json | pjson

Example usage

The following is a sample POST request for the update operation that demonstrates how to update ExecuteNotebookUserLimits and ExecuteNotebooksOrgLimit:

POST /webadaptor/portaladmin/system/limits/update HTTP/1.1
Host: machine.domain.com
Content-Type:
Content-Length: [ ]

properties=[{"limitName": "ExecuteNotebooksUserLimit","numLimit": 15},{"limitName": "ExecuteNotebooksOrgLimit","numLimit": 45]&category=ScheduleTask&f=json

JSON Response syntax

{
  "status": "success"
}

JSON Response example

{
  "status": "success"
}