계약서 태그 변경 API

계약서 태그를 업데이트할 수 있는 API를 제공합니다.

PATCH kit-api/v1/contracts/tags/[tag id]

Method: PATCH Endpoint: kit-api/v1/contracts/tags/[tag id]

Example

...kit-api/v1/contracts/tags/1462
{
  "input": {
    "name": "근로계약서(정규직)",
    "order": 12,
    "colorCode": "RED" // RED, ORANGE, YELLOW, GREEN, BLUE, GRAY 존재
  }
}

Request Body

Key
Type
Description
Required

input.name

string

태그 이름

no

input.order

number

태그 순서

no

input.colorCode

string

태그 색상 (RED, ORANGE, YELLOW, GREEN, BLUE, GRAY)

no

Response

Last updated