Skip to content
URL:
https://<root>/services
Methods:
GET
Operations:
Exists, Create
Child Resources:
Types, Service
Version Introduced:
12.0

Description

The services resource returns a full list of video services stored in the server.

Request parameters

ParameterDescription

f

(Required)

The response format. The default response format is html.

Values: html | json | pjson

token

(Required)

Users interacting programmatically with this endpoint must generate a token that must be included as a request parameter. A token can be obtained using the Generate Token operation.

Response properties

PropertyDetails

total

The total number of services published to ArcGIS Video Server.

num

The number of services currently returned by the response.

start

The number at which the list starts. Defaults to 1.

services

The services property outputs a full list of properties associated with each service published to ArcGIS Video Server. A full list of the properties can be viewed in the Services documentation.

Example usage

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

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

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
    "total": 1,
    "num": 1,
    "start": 1,
    "nextStart": -1,
    "services": [
        {
            "serviceType": "Video Service",
            "description": "",
            "serviceName": "sample_service",
            "frameworkProperties": {
                "dataStoreId": "a41517b0-4c6c-495d-aa94-127ee76de0f2",
                "supportsAppend": false,
                "supportedQueryFormats": "json",
                "portalItemId": "d5c699ab772942499f013fa871eef8d0",
                "created": 1767119978087,
                "supportsMultiUserAddLayer": false,
                "lastReservedId": 0,
                "supportsUpdate": true,
                "layers": [{
                    "serviceType": "ONDEMAND",
                    "created": 1767120013027,
                    "description": "",
                    "sourceFile": "video.ts",
                    "sourceFilesInfo": [{
                        "size": 58028268,
                        "name": "video.ts",
                        "id": "0",
                        "contentType": "video/ts"
                    }],
                    "supportsExportFrameset": true,
                    "supportsExportClip": true,
                    "supportedQueryFormats": "json",
                    "supportsPreviews": true,
                    "name": "sample_layer",
                    "id": 0,
                    "copyrightText": "layer copyright text",
                    "supportsMensuration": false
                }],
                "copyrightText": "service copyright text"
            }
        }
    ]
}

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