계약서 태그 목록 조회 API

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

GET kit-api/v1/contracts/tags

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

Example

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

Response

{
  "ok": true, // api 성공
  "data": [
    {
      "id": 3,
      "name": "credential",
      "colorCode": "PINK",
      "order": 1,
      "customColumnUniqueKey": -1
    },
    {
      "id": 1,
      "name": "secret",
      "colorCode": "ORANGE",
      "order": 2,
      "customColumnUniqueKey": -1
    },
    {
      "id": 4,
      "name": "secre2t",
      "colorCode": "ORANGE",
      "order": 3,
      "customColumnUniqueKey": -1
    }
  ]
}

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

Last updated