Get storage details
Request accessPurpose
Retrieve detailed information about a specific private data storage location.
Request data
HTTP method: GET
- Constants and parameters enclosed in curly brackets
{}must be replaced with their values. - See the following Path 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/storages/{id}URL example
get
URL example
https://api.tomtom.com/maps/orbis/platform/private-gateway/storages/storage-001curl command example
get
curl command example
curl -X GET "https://api.tomtom.com/maps/orbis/platform/private-gateway/storages/storage-001" \ -H "tomtom-api-key: YOUR_API_KEY" \ -H "Authorization: Bearer YOUR_AUTH_TOKEN"Request headers
| Header | Required | Description |
|---|---|---|
tomtom-api-key | Yes | Your TomTom API key |
Authorization | Yes | Bearer token from Azure CLI |
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The unique identifier of the storage |
Response data
Response example
{ "id": "storage-001", "url": "https://storage-001.blob.core.windows.net/default/", "type": "AZURE_BLOB_STORAGE"}Response fields
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the storage |
url | string | URL address of storage |
type | string | Type of storage, supported values: AZURE_BLOB_STORAGE |
Error responses
| HTTP Status | Error | Cause | Solution |
|---|---|---|---|
| 401 | Unauthorized | Invalid credentials | Refresh API key or token |
| 403 | Forbidden | Insufficient permissions | Check your access rights |
| 404 | Not Found | Storage not found | Verify storage ID |
| 500 | Internal Server Error | Server-side issue | Retry the request |