Skip To Content
ArcGIS Developer
Dashboard

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:

{"ScheduleTask": [
    {"limitName": "UpdateInsightsOrgLimit","numLimit": <number>},
    {"limitName": "ExecuteNotebooksUserLimit","numLimit": <number>},
    {"limitName": "ExecuteNotebooksOrgLimit","numLimit": <number>},
    {"limitName": "ExecuteWorkflowManagerUserLimit","numLimit": <number>},
    {"limitName": "ExecuteWorkflowManagerOrgLimit","numLimit": <number>},
    {"limitName": "GPServiceUserLimit","numLimit": <number>},
    {"limitName": "GPServiceOrgLimit","numLimit": <number>},
    {"limitName": "FailedRunsToDisableTask","numLimit": <number>},
    {"limitName": "TaskRunHistoryCount","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 ExecuteNotebooksUserLimit 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"
}