# 계약서 태그 목록 조회 API

계약서 태그 목록을 조회할 수 있는 API입니다.

<br>

## `GET` kit-api/v1/contracts/tags

Method: GET\
Endpoint: kit-api/v1/contracts/tags

<br>

## Example

```
...kit-api/v1/contracts/tags
```

<br>

## Response

```json
{
  "ok": true, // api 성공
  "data": [
    {
      "id": 3135,
      "name": "MOU",
      "colorCode": "RED", // RED, ORANGE, YELLOW, GREEN, BLUE, GRAY 존재
      "order": 1
    },
    {
      "id": 1462,
      "name": "근로계약서",
      "colorCode": "ORANGE",
      "order": 2
    },
    {
      "id": 4393,
      "name": "영업계약서",
      "colorCode": "GREEN",
      "order": 3
    }
  ]
}
```

<br>

```json
{
  "ok": false, // api 실패
  "message": "error message", // Error가 존재하면 message(string)로 전달
  "errorCode": "ERROR_CODE"
}
```

<br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://api-kit.prix.im/contract-tag/list.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
