이벤트 목록 조회
작성일 2026.03.24 | 수정일 2026.04.14
GET/crm-core/v1/eventsQueryentityId— 개체 IDrecordId— 레코드 ID로 필터링eventType— 이벤트 유형으로 필터링category— 카테고리로 필터링startKey— 페이지네이션 시작 키limit— 조회 개수 제한 (1~200)
이벤트 목록을 조회합니다.
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
Response Structure⎘{
"data": [
{
"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"
}
],
"nextKey": "nextKeyToken123"
}