Description
The services resource returns a full list of video services stored in the server.
Request parameters
| Parameter | Description |
|---|---|
(Required) | The response format. The default response format is Values: |
(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
| Property | Details |
|---|---|
| The total number of services published to ArcGIS Video Server. |
| The number of services currently returned by the response. |
| The number at which the list starts. Defaults to |
| The |
Example usage
The following is a sample request URL used to access the services resource:
https://organization.example.com/<context>/admin/services?f=jsonJSON Response example
{
"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"
}
}
]
}