계약서 태그 생성 API

계약서 태그를 생성할 수 있는 API를 제공합니다.

POST kit-api/v1/contracts/tags

Method: POST Endpoint: kit-api/v1/contracts/tags

Example

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

Request Body

Key
Type
Description
Required

input.name

string

태그 이름

yes

input.order

number

태그 순서

no

input.colorCode

string

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

no

Response

Last updated