List Object Storage Offerings

GET /api/marketplace-offerings/?category_name=Storage - List available object storage offerings.

This endpoint retrieves a list of object storage offerings, which define different storage plans and configurations. Use the category_name=Storage filter to retrieve only object storage offerings.

Request Example:

GET [https://api.wayscloud.services/api/marketplace-offerings/?category_name=Storage](https://api.wayscloud.services/api/marketplace-offerings/?category_name=Storage)
Authorization: Token <your_api_token>

Response Example:

{
"next": null,
"previous": null,
"count": 2,
"results": [
{
"uuid": "storage_offering_uuid_1",
"name": "Standard Storage",
"description": "Standard object storage with 1 GB minimum and pay-as-you-go pricing.",
"category": {
"uuid": "storage_category_uuid",
"name": "Storage",
"description": "Object Storage offerings"
},
//... other fields...
},
{
"uuid": "storage_offering_uuid_2",
"name": "Archive Storage",
"description": "Low-cost storage for infrequently accessed data.",
"category": {
"uuid": "storage_category_uuid",
"name": "Storage",
"description": "Object Storage offerings"
},
//... other fields...
}
]
}

Status Codes:

  • 200 OK: The list of object storage offerings was successfully retrieved.
  • 401 Unauthorized: The user making the request is not authorized