- URL:https://<root>/system/limits
- Required Capability:Default administrator role | Security and infrastructure privilege | Organization website privilege
- Version Introduced:11.2
Description
The limits resource provides limits associated with the portal organization, such as user and organizational limits or scheduled tasks.
Request parameters
| Parameter | Details |
|---|---|
| f | The response format. The default response format is html. Values: html | json | pjson |
Response properties
| Property | Details |
|---|---|
| UpdateInsightsUserLimit | The maximum number of scheduled Insight reports that can be created by an individual user. |
| UpdateInsightsOrgLimit | The maximum total number of scheduled Insight reports that can be created by all users in an organization. |
| ExecuteNotebooksUserLimit | The maximum number of active scheduled notebook tasks that can be owned by an individual user. |
| ExecuteNotebooksOrgLimit | The maximum total number of active scheduled notebook tasks that can be created by all users in an organization. |
| ExecuteWorkflowManagerUserLimit | The maximum number of scheduled recurring workflow manager jobs that can be created by an individual user. |
| ExecuteWorkflowManagerOrgLimit | The maximum total number of scheduled recurring workflow manager obs that can be created by all users in an organization. |
| FailedRunsToDisableTask | The number of times a task can fail consecutively before it is disabled. Default value: 5 |
| TaskRunHistoryCount | The number of scheduled task run results that will be reported and maintained for a scheduled task. Default value: 30 |
| GPServiceUserLimit | The maximum number of active scheduled Geoprocessing Service tasks that can be owned by an individual user. |
| GPServiceOrgLimit | The maximum total number of active scheduled Geoprocessing Service tasks that can be created by all users in an organization. |
Example usage
The following is a sample request URL used to access the limits resource:https://machine.domain.com/webadaptor/portaladmin/system/limits?f=json
JSON Response syntax
{"ScheduleTask": [
{"UpdateInsightsUserLimit": <number>},
{"UpdateInsightsOrgLimit": <number>},
{"ExecuteNotebooksUserLimit": <number>},
{"ExecuteNotebooksOrgLimit": <number>},
{"ExecuteWorkflowManagerUserLimit": <number>},
{"ExecuteWorkflowManagerOrgLimit": <number>}
]}
JSON Response example
{"ScheduleTask": [
{"UpdateInsightsUserLimit": 20},
{"UpdateInsightsOrgLimit": 50},
{"ExecuteNotebooksUserLimit": 20},
{"ExecuteNotebooksOrgLimit": 200},
{"ExecuteWorkflowManagerUserLimit": 30},
{"ExecuteWorkflowManagerOrgLimit": 100}
]}