이벤트 일괄 생성
작성일 2026.03.24 | 수정일 2026.04.14
POST/crm-core/v1/events/bulk
여러 CRM 이벤트를 일괄 생성합니다. 최대 100건까지 일괄 생성 가능합니다.
Body Params
| Name | Type | Required | Description |
|---|---|---|---|
| events | Array | 이벤트 목록 (최대 100건) | |
| entityId | string | 개체 ID | |
| recordId | string | 레코드 ID | |
| eventType | string | 이벤트 유형 | |
| category | string | 카테고리 | |
| label | string | 라벨 | |
| value | number | 값 | |
| properties | Object | 추가 속성 | |
| occurredAt | date | 발생 일시 |
Response
| Name | Type | Required | Description |
|---|---|---|---|
| created | number | 생성된 이벤트 수 |
Structure
Request Structure⎘{
"events": [
{
"entityId": "ENT20260324090000ABCDEFGHIJKLMNO",
"recordId": "REC20260324090000ABCDEFGHIJKLMNO",
"eventType": "PURCHASE",
"category": "general",
"label": "라벨",
"value": 100,
"properties": {
"key": "value"
},
"occurredAt": "2026-03-24T09:00:00.000Z"
}
]
}Response Structure⎘{
"created": 1
}