Send Project Estimate

This webhook event includes a body containing the estimate data for a specific Archisketch project.

It is triggered when the user clicks the [Send Estimate] button in the Archisketch 3D planner.


Event Body

FieldDescriptionTypeNullable
id웹훅 이벤트 고유 IDString
userId견적서를 전송한 유저 고유 IDString
userName견적서를 전송한 유저 이름String
userEmail견적서를 전송한 유저 이메일String
projectId프로젝트 고유 IDString
projectName프로젝트명String
furnitureItems가구 견적 리스트List<FurnitureItem>
finishItems마감재 견적 리스트List<FinishItem>

<FurnitureItem>

FieldDescriptionTypeNullable
floorId층 고유 IDString
floorName층 이름String
roomId방 고유 IDStringO
roomType방 타입StringO
componentId제품 고유 IDString
code제품 코드StringO
previewImage제품 이미지 (CDN URL)StringO
name제품명String
colorName제품 색상명StringO
colorCode제품 색상코드StringO
dimensionInch제품 규격 (inch)DimensionO
dimensionMm제품 규격 (mm)DimensionO
quantity제품 수량Int
retailPrice제품 소비자단가Price
factoryPrice제품 공장단가PriceO
totalPrice제품 가격 합계Price

<FinishItem>

FieldDescriptionTypeNullable
floorId층 고유 IDString
floorName층 이름String
roomId방 고유 IDStringO
roomType방 타입StringO
productId마감재 고유 IDString
code마감재 코드StringO
previewImage마감재 이미지 (CDN URL)StringO
name마감재명String
colorName마감재 색상명StringO
colorCode마감재 색상코드StringO
dimensionInch마감재 규격 (inch) - Depth는 항상 NullDimensionO
dimensionMm마감재 규격 (mm) - Depth는 항상 NullDimensionO
quantity마감재 수량Int
tileQuantity마감재 수량 (타일 단위)Int
tileQuantityMin마감재 최소 수량 (타일 단위)Int
tileQuantityMax마감재 최대 수량 (타일 단위)Int
targetType마감재 적용 면적 타입 (floor/ceiling/wall)String
targetArea마감재 적용 면적Double
retailPrice마감재 소비자단가Price
totalPrice마감재 가격 합계Price

<Price>

FieldDescriptionTypeNullable
value가격Double
currency통화 (KRW/USD/EUR/JPY/GBP/CNY/VND/TWD)String

<Dimension>

FieldDescriptionTypeNullable
width너비Double
height높이Double
depth깊이DoubleO

Example

{
  "id": "ZCkjFzOC1BF73A3933343E2",
  "userId": "Y8X15bQE6FED24740AB42FA",
  "userName" : "John Doe",
  "userEmail": "[email protected]",
  "projectId": "ZUWc84VCEF2F56B34BB4423",
  "projectName": "Modern Living Room",
  "furnitureItems": [
    {
      "floorId": "01920A5D-7857-4177-9EA1-8BE5CCDFED74",
      "floorName": "Floor 1",
      "roomId": "dde64fe4-07c7-4ae3-9976-720bc500588a",
      "roomType": "거실&다이닝",
      "componentId": "XcaEtD_E15876369C954A5E",
      "code": "FURN1234",
      "previewImage": "https://resources.archisketch.com/product/XcaEtD_E15876369C954A5E/preview.png",
      "name": "라탄 케인 오크 침대 (Queen)",
      "colorName": "오크",
      "colorCode": "#D4A373",
      "dimensionInch": {
        "width": 61.42,
        "height": 42.76,
        "depth": 81.89
      },
      "dimensionMm": {
        "width": 1560.0,
        "height": 1086.0,
        "depth": 2080.0
      },
      "quantity": 2,
      "retailPrice": {
        "value": 540000.0,
        "currency": "KRW"
      },
      "factoryPrice": {
        "value": 500000.0,
        "currency": "KRW"
      },
      "totalPrice": {
        "value": 1080000.0,
        "currency": "KRW"
      }
    }
  ],
  "finishItems": [
    {
      "floorId": "67b3e8b8950d140331ca948d",
      "floorName": "Floor 1",
      "roomId": "dde64fe4-07c7-4ae3-9976-720bc500588a",
      "roomType": "거실&다이닝",
      "productId": "ZOaPdJn3009D1C621A145E6",
      "code": "FINISH5678",
      "previewImage": "https://resources.archisketch.com/product/ZOaPdJn3009D1C621A145E6/preview.png",
      "name": "대리석 타일",
      "colorName": "화이트",
      "colorCode": "#FFFFFF",
      "dimensionInch": {
        "width": 39.37,
        "height": 39.37,
        "depth": null
      },
      "dimensionMm": {
        "width": 1000.0,
        "height": 1000.0,
        "depth": null
      },
      "quantity": 41,
      "tileQuantity": 41,
      "tileQuantityMin": 35,
      "tileQuantityMax": 41,
      "targetType": "floor",
      "targetArea": 34.3,
      "retailPrice": {
        "value": 85000.0,
        "currency": "KRW"
      },
      "totalPrice": {
        "value": 3485000.0,
        "currency": "KRW"
      }
    }
  ]
}