Skip to content

The ArcGIS Video Server REST API allows you to interact with ArcGIS Video Server programmatically. This means that you can completely manage your server using any framework that can make HTTP requests.

The API is organized into resources and operations. Resources are entities within ArcGIS Video Server that hold some information and a have well-defined state. Operations act on these resources and update their information or state. Resources and operations are hierarchical and have unique universal resource locators (URLs).

This topic is designed to help you navigate through the APIs as well as be more productive in working with ArcGIS Video Server.

REST and Administrator Directories

The service and administrator directories, which are installed with each instance of ArcGIS Video Server, are simple HTML interfaces that allow you to interact with the resources and operations exposed by the REST API. This can be helpful when building scripts for automation or administrative tasks and applications. The service and administrator directories are accessible by navigating to the site URL in a web browser.

Getting Started

The hierarchical root of the REST API begins with a well-defined URL called as the site URL. Typically, these are accessible at:

Service
Use dark colors for code blocksCopy
1
https://server:21443/arcgis/rest`
Administrator
Use dark colors for code blocksCopy
1
`https://server:21443/arcgis/admin`

Organized hierarchically from the site URL are the various resources and operations that are exposed by the REST API. To access a resource or invoke an operation you must create a request by:

  1. Constructing a URL to the selected resource or operation as defined in the API Reference
  2. Providing the relevant parameters in their specified format
  3. Accessing the URL over the prescribed HTTP method (typically GET or POST)

The API is stateless, which means that the server does not keep track of transactions from one request to the next. Each request must contain all the information necessary for successful processing. The server will process each request and return a well-defined response.

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