Skip to content
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

ParameterDetails

f

(Required)

(required)

The response format. The default value 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 stores resource:

Use dark colors for code blocksCopy
1
https://organization.example.com:21443/arcgis/rest/stores?f=pjson&token=<token>

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
{
  "items": [
    {
      "path": "/cloudStores/sampleCloudStore",
      "provider": "<Google | AWS | Azure | Alibaba>",
      "name": "dataStoreName",
      "id": "dataStoreId",
      "type": "cloudStore"
    }
  ]
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
{
  "items": [
    {
      "path": "/cloudStores/test_gcs_ds_zbih2yjulosxm7ie",
      "provider": "Google",
      "name": "2WdG491v",
      "id": "8c056616712246c5a9f867e017de37",
      "type": "cloudStore"
    }
  ]
}

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