API

활동 목록 조회

작성일 2026.03.24 | 수정일 2026.04.14

GET/crm-core/v1/activitiesQueryrecordId— 레코드 ID로 필터링. "CALENDAR"를 입력하면 일반 일정만 조회됩니다.entityId— 개체 ID로 필터링activityType— 활동 유형으로 필터링startKey— 페이지네이션 시작 키limit— 조회 개수 제한
활동 목록을 조회합니다.

chat

MEMBER 역할은 본인 소유 활동과 공개(PUBLIC) 활동, 소유자 미지정 활동만 조회됩니다. OWNER 역할은 모든 활동을 조회할 수 있습니다.

Response

NameTypeRequiredDescription
activityIdstring활동 고유 ID
accountIdstring계정 고유 ID
recordIdstring레코드 ID. "CALENDAR"인 경우 일반 일정입니다.
activityTypestring활동 유형
subjectstring활동 제목
descriptionstring활동 설명
scheduledAtdate예정 일시
dueDatedate마감 일시
assignedMemberIdsArray담당자 목록
durationMinutesnumber소요 시간
metadataObject메타데이터
ownerIdstring활동 소유자 멤버 ID
visibilitystring활동 공개 범위 (PRIVATE 또는 PUBLIC)
dateCreateddate최초 생성 날짜
dateUpdateddate*최근 수정 날짜

Structure

Response Structure⎘{
"data": [
{
"activityId": "ACT20260324090000ABCDEFGHIJKLMNO",
"accountId": "24010100001234",
"recordId": "REC20260324090000ABCDEFGHIJKLMNO",
"activityType": "MEETING",
"subject": "고객 미팅",
"description": "설명 텍스트",
"scheduledAt": "2026-03-24T09:00:00.000Z",
"dueDate": "2026-03-24T09:00:00.000Z",
"assignedMemberIds": [
"샘플값"
],
"durationMinutes": 30,
"metadata": {
"key": "value"
},
"ownerId": "MEM20260324090000ABCDEFGHIJKLMNO",
"visibility": "PRIVATE",
"dateCreated": "2026-03-24T09:00:00.000Z",
"dateUpdated": "2026-03-24T09:00:00.000Z"
}
],
"nextKey": "nextKeyToken123"
}