이벤트 생성
작성일 2026.03.24 | 수정일 2026.04.14
POST/crm-core/v1/events
CRM 이벤트를 생성합니다.
Body Params
| Name | Type | Required | Description |
|---|---|---|---|
| entityId | string | 개체 ID (최대 128자) | |
| recordId | string | 레코드 ID (최대 128자) | |
| eventType | string | 이벤트 유형 (최대 128자) | |
| category | string | 카테고리 (최대 128자) | |
| label | string | 라벨 (최대 512자) | |
| value | number | 값 | |
| properties | Object | 추가 속성 | |
| occurredAt | date | 발생 일시 (ISO 8601) |
Response
| Name | Type | Required | Description |
|---|---|---|---|
| eventId | string | 이벤트 고유 ID | |
| entityId | string | 개체 ID | |
| recordId | string | 레코드 ID | |
| eventType | string | 이벤트 유형 | |
| category | string | 카테고리 | |
| label | string | 라벨 | |
| value | number | 값 | |
| properties | Object | 추가 속성 | |
| occurredAt | date | 발생 일시 | |
| dateCreated | date | 최초 생성 날짜 |
Structure
Request Structure⎘{
"entityId": "ENT20260324090000ABCDEFGHIJKLMNO",
"recordId": "REC20260324090000ABCDEFGHIJKLMNO",
"eventType": "PURCHASE",
"category": "general",
"label": "라벨",
"value": 100,
"properties": {
"key": "value"
},
"occurredAt": "2026-03-24T09:00:00.000Z"
}Response Structure⎘{
"eventId": "EVT20260324090000ABCDEFGHIJKLMNO",
"entityId": "ENT20260324090000ABCDEFGHIJKLMNO",
"recordId": "REC20260324090000ABCDEFGHIJKLMNO",
"eventType": "PURCHASE",
"category": "general",
"label": "라벨",
"value": 100,
"properties": {
"key": "value"
},
"occurredAt": "2026-03-24T09:00:00.000Z",
"dateCreated": "2026-03-24T09:00:00.000Z"
}