---
title: "deleteInstanceTags"
slug: "cli-server-deleteinstancetags"
updated: 2026-05-21T09:02:03Z
published: 2026-05-21T09:11:32Z
canonical: "cli-gov.ncloud-docs.com/cli-server-deleteinstancetags"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://cli-gov.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# deleteInstanceTags

## 개요

인스턴스 태그 삭제

## 설명

인스턴스 태그를 삭제합니다.

## 요청 파라미터

| 파라미터 명 | 필수 여부 | 타입 | 제약사항 | 설명 |
| --- | --- | --- | --- | --- |
| instanceNoList | Yes | List | Repeat not allowed | 인스턴스 태그를 삭제할 인스턴스 번호 리스트(서버 한정) |
| instanceTagList.tagKey | No | String |  | 삭제할 인스턴스 태그 리스트. 태그 키 |
| instanceTagList.tagValue | No | String |  | 삭제할 인스턴스 태그 리스트. 태그 값 |

## 응답 데이터 타입

- InstanceTagList type

| InstanceTagList extends CommonResponse |
| --- |
| private Integer totalRows; |
| private List<instancetag data-tomark-pass=""> instanceTagList = new ArrayList<instancetag data-tomark-pass="">();</instancetag></instancetag> |

| InstanceTag |
| --- |
| private String instanceNo; |
| private CommonCode instanceType; |
| private String tagKey; |
| private String tagValue; |

## 예시

### 호출

```
ncloud server deleteInstanceTags --instanceNoList 713768
```

### 응답

```
{
  "deleteInstanceTagsResponse": {
    "requestId": "c85cdbbb-d811-46ae-827b-faa48c7c697b",
    "returnCode": "0",
    "returnMessage": "success",
    "totalRows": 0,
    "instanceTagList": []
  }
}
```

```
<?xml version="1.0" encoding="UTF-8" ?>
<deleteInstanceTagsResponse>
  <requestId>c85cdbbb-d811-46ae-827b-faa48c7c697b</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>0</totalRows>
  <instanceTagList/>
</deleteInstanceTagsResponse>
```
