Skip to content
URL:
https://<root>/system/properties
Methods:
GET
Operations:
Update
Version Introduced:
12.0

Description

The properties resource is a container for ArcGIS Video Server configuration properties that govern its behavior.

Request parameters

ParameterDetails

f

(Required)

The response format. The default response format is html.

Values: html | json | pjson

Server properties

PropertyDetails

maxFrameCount

Sets the maximum number of frames allowed in an uploaded video layer as an integer. Defaults to 1000 and has no strict limit.

maxFileUploadSize

Sets the maximum uploadable file size to the server site in MB. Defaults to 5000 and has no strict limit.

disableServicesDirectory

Enables or disables the Services directory. If true, administrators can access the full list of services via /admin/services/. If false, this directory will be blocked for security purposes.

Values: true | false

Example usage

The following is a sample request URL used to access the properties resource:

Use dark colors for code blocksCopy
1
https://organization.example.com/<context>/admin/system/properties?f=pjson

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
{
  "<property1>": <value1>,
  "<property2>": <value1>,
  ...
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
{
  "maxFrameCount": 1000,
  "maxFileUploadSize": 5000,
  "disableServicesDirectory": false
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.