Storage Offering
Storage (disk) offerings define the size and performance profile of volumes.
Resource base path: /restapi/storage
| Method | Path | Description |
|---|---|---|
GET | /restapi/storage/storageOfferingList | Storage Offering List |
GET | /restapi/storage/storageOfferingListWithPrice | Storage Offering List With Price |
note
apikey and secretkey are required HTTP headers on every request and are omitted from the parameter tables below. See Authentication.
Storage Offering List
Storage Offering List.
GET /restapi/storage/storageOfferingList
Parameters
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
zoneUuid | query | string | ✅ Yes | UUID of the zone the resource belongs to. |
uuid | query | string | No | UUID of the resource. |
Example request
curl -X GET \
"https://portal.your-domain.com/restapi/storage/storageOfferingList?zoneUuid=a1b2c3d4-e5f6-7890-abcd-ef1234567890" \
-H "apikey: YOUR_API_KEY" \
-H "secretkey: YOUR_SECRET_KEY"
Responses
| Code | Description |
|---|---|
200 | Successful operation. |
401 | Invalid authentication credentials. |
550 | Permission denied. |
{
"listStorageOfferingResponse": [
{
"diskSize": "string",
"isCustomDisk": true,
"name": "example-name",
"description": "string",
"storageType": "string",
"isActive": true,
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
],
"count": 1
}
Storage Offering List With Price
Storage Offering List With Price.
GET /restapi/storage/storageOfferingListWithPrice
Parameters
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
zoneUuid | query | string | No | UUID of the zone the resource belongs to. |
uuid | query | string | No | UUID of the resource. |
Example request
curl -X GET \
"https://portal.your-domain.com/restapi/storage/storageOfferingListWithPrice" \
-H "apikey: YOUR_API_KEY" \
-H "secretkey: YOUR_SECRET_KEY"
Responses
| Code | Description |
|---|---|
200 | Successful operation. |
401 | Invalid authentication credentials. |
550 | Permission denied. |
{
"listStorageOfferingPrice": [
{
"diskSize": "string",
"isCustomDisk": true,
"price": [
{}
],
"name": "example-name",
"description": "string",
"storageType": "string",
"isActive": true,
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
],
"count": 1
}