List cloud images

GET/v1/cloud_computing/regions/{region_id}/images

To list all cloud images available in a cloud region, send a GET request to /v1/cloud_computing/regions/{region_id}/images. Choose a necessary region by adding its ID in the path parameter. The list contains both default operating systems and uploaded images.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

FieldDetails
region_id
string

A unique identifier of a cloud region. To get a list of IDs, go to the relevant request in the Cloud Region section.

Query Parameters

FieldDetails
per_page?
integer

Default: 20

Range: 1–100

The number of results [ 1 .. 100 ] displayed on a page. By default, 20 results are shown.

page?
integer

Default: 1

Min: 1

The number of a page (>= 1) that will be returned. By default, it's 1.

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/cloud_computing/regions/0/images"
[  {    "id": "6ac0370d-ff67-47f2-8d48-8896126012b3",    "name": "name148",    "image_size": 11264,    "min_disk": 0,    "allowed_flavors": [      "101",      "102",      "103",      "104",      "160",      "201",      "202"    ]  },  {    "id": "e9e18632-f606-4aa5-a64c-110d43338439",    "name": "name149",    "image_size": 12288,    "min_disk": 0,    "allowed_flavors": [      "101",      "102",      "103",      "104",      "160",      "201",      "202"    ]  }]