Available in VPC
Get the server image list.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET | POST | /vserver/v2/getServerImageList |
Note
This guide is based on the GET method. POST method call tests can be performed through Swagger in the API Gateway service of the NAVER Cloud Platform console.
Request headers
For information about the headers common to all Server APIs, see Server request headers.
Request query parameters
You can use the following query parameters with your request:
Field | Type | Required | Description |
---|---|---|---|
regionCode |
String | Optional | Region code
|
serverImageNoList.N |
Array | Optional | Server image number list
|
serverImageName |
String | Optional | Filter by the server image name. |
serverImageStatusCode |
String | Optional | Filter by the server image status code.
|
serverImageTypeCodeList.N |
Array | Optional | Server image type code list
|
hypervisorTypeCodeList.N |
Array | Optional | Hypervisor type code list
|
osTypeCodeList.N |
Array | Optional | Operating system type code list.
|
platformCategoryCodeList.N |
Array | Optional | Platform category code list
|
pageNo |
Integer | Optional | Page number
|
pageSize |
Integer | Conditional | Number of items per page
|
sortingOrder |
String | Optional | Sort order
|
responseFormatType |
String | Optional | Format of the response data
|
Request example
The request example is as follows:
curl --location --request GET 'https://ncloud.apigw.ntruss.com/vserver/v2/getServerImageList
?regionCode=KR
&serverImageNoList.1=*****3135
&serverImageName=test-***
&serverImageStatusCode=CREAT
&osTypeCodeList.1=UBUNTU
&responseFormatType=json' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
Response
This section describes the response format.
Response body
The response body includes the following data:
Field | Type | Required | Description |
---|---|---|---|
getServerImageListResponse |
Object | - | Response result
|
getServerImageListResponse.requestId |
String | - | ID for the request
|
getServerImageListResponse.returnCode |
String | - | Response code |
getServerImageListResponse.returnMessage |
String | - | Response message |
Response status codes
For information about the response status codes common to all Server APIs, see Server response status codes.
Response example
The response example is as follows:
{
"getServerImageListResponse": {
"totalRows": 1,
"serverImageList": [
{
"serverImageNo": "*****3135",
"serverImageName": "test-***",
"serverImageType": {
"code": "SELF",
"codeName": "SELF server image"
},
"serverImageLifeCyclePhase": {
"code": "IN_SERVICE",
"codeName": "In Service"
},
"hypervisorType": {
"code": "KVM",
"codeName": "KVM"
},
"cpuArchitectureType": {
"code": "X86_64",
"codeName": "x86 64bit"
},
"osCategoryType": {
"code": "LINUX",
"codeName": "LINUX"
},
"osType": {
"code": "UBUNTU",
"codeName": "UBUNTU"
},
"serverImageStatus": {
"code": "CREAT",
"codeName": "NSI CREATED state"
},
"serverImageOperation": {
"code": "NULL",
"codeName": "NSI NULL OP"
},
"serverImageStatusName": "created",
"shareStatus": {
"code": "NULL",
"codeName": "NSI Share NULL State"
},
"blockStorageMappingList": [
{
"order": 0,
"blockStorageSnapshotInstanceNo": 106384697,
"blockStorageSnapshotName": "test-***",
"blockStorageSize": 10737418240,
"blockStorageVolumeType": {
"code": "CB1",
"codeName": "Common BlockStorage 1"
},
"iops": 100,
"throughput": 104857600,
"isEncryptedVolume": false
}
],
"sharedLoginIdList": [],
"serverImageProductCode": "SW.VSVR.OS.LNX64.UBNTU.SVR24.G003",
"createDate": "2025-06-20T09:59:39+0900",
"platformCategoryCode": "OS"
}
],
"requestId": "3530f136-21b0-4588-8ed8-1dab9012b4ac",
"returnCode": "0",
"returnMessage": "success"
}
}