- URL:
- https://<root>/stores
- Methods:
GET- Child Resources:
- Store
- Version Introduced:
- 12.0
Description
The stores resource outputs information regarding ArcGIS Video Server's registered user-managed cloud data stores. This operation will output a list of the data stores, which automatically link to their Describe endpoint. Once you have navigated to this point, they will output any files contained within the data store.
Request parameters
| Parameter | Details |
|---|---|
(Required) (required) | The response format. The default value 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 stores resource:
https://organization.example.com:21443/arcgis/rest/stores?f=pjson&token=<token>JSON Response syntax
{
"items": [
{
"path": "/cloudStores/sampleCloudStore",
"provider": "<Google | AWS | Azure | Alibaba>",
"name": "dataStoreName",
"id": "dataStoreId",
"type": "cloudStore"
}
]
}JSON Response example
{
"items": [
{
"path": "/cloudStores/test_gcs_ds_zbih2yjulosxm7ie",
"provider": "Google",
"name": "2WdG491v",
"id": "8c056616712246c5a9f867e017de37",
"type": "cloudStore"
}
]
}