getMemberServerImageInstanceList

Prev Next

Available in VPC

Get the list of My server image instances.

Note

KVM-based server images are not supported.

Request

This section describes the request format. The method and URI are as follows:

Method URI
GET | POST /vserver/v2/getMemberServerImageInstanceList
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
memberServerImageInstanceNoList.N Array Optional Server image instance number list
  • See getMemberServerImageInstanceList.
  • Filter by the server image instance number.
  • Example: memberServerImageInstanceNoList.1=1234&memberServerImageInstanceNoList.2=2345
memberServerImageName String Optional Filter by the server image name.
memberServerImageInstanceStatusCode String Optional Filter by the server image status code.
  • INIT | CREAT
platformTypeCodeList.N Array Optional Platform type code list
  • Filter by the platform type code.
  • LNX32 | LNX64 | WND32 | WND64 | UBD64 | UBS64
  • Example: platformTypeCodeList.1=LNX32&platformTypeCodeList.2=LNX64
pageNo Integer Optional Page number
  • 0-N (default: 0)
  • First page: Enter 0 or 1.
pageSize Integer Conditional Number of items per page
  • 1-1000 (default: 1)
  • Required when entering pageNo
sortedBy String Optional Sort by
  • memberServerImageName: member server image name (valid value)
sortingOrder String Optional Sort order
  • ASC (default) | DESC
    • ASC: ascending order
    • DESC: descending order
responseFormatType String Optional Format of the response data
  • xml (default) | json

Request example

The request example is as follows:

curl --location --request GET 'https://ncloud.apigw.ntruss.com/vserver/v2/getMemberServerImageInstanceList
?regionCode=KR
&memberServerImageInstanceNoList.1=*****2264
&memberServerImageName=test-***
&memberServerImageInstanceStatusCode=CREAT
&platformTypeCodeList.1=UBD64
&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
getMemberServerImageInstanceListResponse Object - Response result
getMemberServerImageInstanceListResponse.requestId String - ID for the request
  • UUID format
getMemberServerImageInstanceListResponse.returnCode String - Response code
getMemberServerImageInstanceListResponse.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:

{
    "getMemberServerImageInstanceListResponse": {
        "totalRows": 1,
        "memberServerImageInstanceList": [
            {
                "memberServerImageInstanceNo": "*****2264",
                "memberServerImageName": "test-***",
                "originalServerInstanceNo": "*****2010",
                "originalServerImageProductCode": "SW.VSVR.OS.LNX64.UBNTU.SVR2004.B050",
                "memberServerImageInstanceStatus": {
                    "code": "CREAT",
                    "codeName": "NSI CREATED state"
                },
                "memberServerImageInstanceOperation": {
                    "code": "NULL",
                    "codeName": "NSI NULL OP"
                },
                "memberServerImageInstanceStatusName": "created",
                "createDate": "2025-06-26T11:09:07+0900",
                "memberServerImageBlockStorageTotalRows": 1,
                "memberServerImageBlockStorageTotalSize": 53687091200,
                "shareStatus": {
                    "code": "NULL",
                    "codeName": "NSI Share NULL State"
                },
                "sharedLoginIdList": []
            }
        ],
        "requestId": "19ca615c-faa2-4e05-9bd1-c4ecf8f2c7b2",
        "returnCode": "0",
        "returnMessage": "success"
    }
}