- URL:https://<root>/system/limits/update(POST only)
- Required Capability:Default administrator role | Security and infrastructure privilege | Organization website privilege
- Version Introduced:11.2
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
Parameter | Details |
---|---|
properties | A JSON array containing one or more limits of a specific category that will be updated. Syntax: Example: |
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"
}