API

이벤트 목록 조회

작성일 2026.03.24 | 수정일 2026.03.25

GET/crm-core/v1/events
Query
entityId*— 개체 ID
recordId— 레코드 ID로 필터링
eventType— 이벤트 유형으로 필터링
category— 카테고리로 필터링
startKey— 페이지네이션 시작 키
limit— 조회 개수 제한 (1~200)

이벤트 목록을 조회합니다.

Response

NameTypeRequiredDescription
eventIdstring*이벤트 고유 ID
entityIdstring*개체 ID
recordIdstring*레코드 ID
eventTypestring*이벤트 유형
categorystring카테고리
labelstring라벨
valuenumber
propertiesObject추가 속성
occurredAtdate*발생 일시
dateCreateddate*최초 생성 날짜

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" }