API

이벤트 목록 조회

작성일 2026.03.24 | 수정일 2026.04.14

GET/crm-core/v1/eventsQueryentityId— 개체 IDrecordId— 레코드 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"
}