- 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
| Parameter | Details |
|---|---|
(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. |
Example usage
The following is a sample request URL used to access the uploads resource:
https://organization.example.com/<context>/admin/uploads?f=pjsonJSON Response example
{"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"
}
]}