컴포넌트 등록하기
모델링을 기반으로 컴포넌트를 생성하고 관리하는 방법을 안내합니다.
X-API-KEY: {x-api-key}컴포넌트 생성하기
2
요청 보내기
POST /api/v1/components
X-API-KEY: {x-api-key}
{
"name": "소파",
"translatedNames": [
{ "code": "en", "value": "Sofa" },
{ "code": "ko", "value": "소파" }
],
"dimension": {
"mm": {
"width": 900,
"depth": 800,
"height": 750
}
},
"isFinal": true,
"images": ["https://..."],
"childComponents": [],
"codeRelations": [],
"modelingId": "mdl_abc123"
}3
응답 확인하기
{
"result": "SUCCESS",
"data": {
"id": "cmp_def456",
"enterpriseId": "ENT_ABC123",
"userId": "usr_xyz",
"name": "소파",
"translatedNames": [
{ "code": "en", "value": "Sofa" },
{ "code": "ko", "value": "소파" }
],
"modelingId": "mdl_abc123",
"isFinal": true,
"isRaw": false,
"dimension": {
"mmWidth": 900,
"mmDepth": 800,
"mmHeight": 750,
"inchWidth": 35.4,
"inchDepth": 31.5,
"inchHeight": 29.5
},
"previewImage": null,
"images": [],
"hdViewerAssets": [],
"childComponents": [],
"categories": [],
"createdAt": "2026-04-04T10:01:00Z",
"updatedAt": "2026-04-04T10:01:00Z"
}
}컴포넌트 목록 조회하기
파라미터
타입
필수
설명
GET /api/v1/components?offset=0&limit=20
X-API-KEY: {x-api-key}컴포넌트 단건 조회하기
컴포넌트 기본정보 수정하기
필드
타입
필수
설명
Flat BOM 조회하기
에셋 업로드하기
필드
타입
필수
설명
Last updated
Was this helpful?

