Skip to main content
POST
/
v1
/
estimate
/
item
견적서 항목 생성
curl --request POST \
  --url https://openapi.pluuug.com/v1/estimate/item \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "<string>",
  "unitCost": "<string>",
  "unit": "<string>",
  "description": "<string>",
  "classification": {
    "id": 123
  }
}'
{
  "id": 123,
  "title": "<string>",
  "unitCost": "<string>",
  "unit": "<string>",
  "description": "<string>",
  "image": "<string>",
  "classification": {
    "id": 123,
    "title": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required

Body

title
string
required

제목

Required string length: 1 - 256
unitCost
string<decimal>
required

단위당 비용

unit
string
required

단위

Required string length: 1 - 8
description
string | null
required

설명

Required string length: 1 - 2048
classification
object
required

분류

Response

id
integer
required
title
string
required

제목

Maximum length: 256
unitCost
string<decimal>
required

단위당 비용

unit
string
required

단위

Maximum length: 8
description
string | null
required

설명

Maximum length: 2048
image
string
required
classification
object
required

분류

I