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

Description

The uploads resource returns list of all items uploaded to ArcGIS Video Server, including their file IDs and file names, as well as the option to manually delete each upload individually.

Request parameters

ParameterDetails

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.

Example usage

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

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

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
{"uploads": [
    {
        "date": 1767632201961,
        "owner": "administrator",
        "fileName": "video1.mp4",
        "committed": true,
        "description": "",
        "contentType": "video/mp4",
        "fileId": "i18e8fb2a-7453-4029-ad5e-cfa1a937b601"
    },
    {
        "date": 1767632222161,
        "owner": "administrator",
        "fileName": "video2.mpeg",
        "committed": true,
        "description": "",
        "contentType": "video/mpeg",
        "fileId": "i3d63b51d-b364-4084-99da-6b1063621db6"
    },
    {
        "date": 1767632193730,
        "owner": "administrator",
        "fileName": "video3.ts",
        "committed": true,
        "description": "",
        "contentType": "application/octet-stream",
        "fileId": "i6d07631a-68a5-4ae6-8abc-a03cd84d93e8"
    }
]}

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