List storages
Request accessPurpose
Retrieve a list of all private data storage locations associated with your account.
Request data
HTTP method: GET
- Constants and parameters enclosed in curly brackets
{}must be replaced with their values. - See the following Request parameters section with the required and optional parameters tables for these values.
URL format
get
URL format
https://api.tomtom.com/maps/orbis/platform/private-gateway/storagesURL example
get
URL example
https://api.tomtom.com/maps/orbis/platform/private-gateway/storagescurl command example
get
curl command example
curl -X GET "https://api.tomtom.com/maps/orbis/platform/private-gateway/storages" \ -H "tomtom-api-key: YOUR_API_KEY" \ -H "Authorization: Bearer YOUR_AUTH_TOKEN" \ -H "X-Version: 1"Request headers
| Header | Required | Description |
|---|---|---|
tomtom-api-key | Yes | Your TomTom API key |
Authorization | Yes | Bearer token from Azure CLI |
X-Version | Yes | API version (use 1) |
Response data
Response example
{ "storages": [ { "id": "storage-001", "name": "Production Data", "createdAt": "2026-01-15T09:00:00Z" }, { "id": "storage-002", "name": "Test Environment", "createdAt": "2026-01-18T14:30:00Z" } ]}Response fields
| Field | Type | Description |
|---|---|---|
storages | array | List of storage objects |
storages[].id | string | Unique identifier for the storage |
storages[].name | string | Human-readable name of the storage |
storages[].createdAt | string | ISO 8601 timestamp of storage creation |
Error responses
| HTTP Status | Error | Cause | Solution |
|---|---|---|---|
| 401 | Unauthorized | Invalid credentials | Refresh API key or token |
| 403 | Forbidden | Insufficient permissions | Check your access rights |
| 500 | Internal Server Error | Server-side issue | Retry the request |