For the complete documentation index, see llms.txt. This page is also available as Markdown.

커스텀 오브젝트 액티비티 목록 조회

GET /v2/custom-object/activity

커스텀 오브젝트 레코드의 액티비티 목록을 조회합니다. types로 활동 유형을 쉼표로 구분해 필터링할 수 있고, startDateendDate로 활동 발생 기간을 제한할 수 있습니다.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query parameters

Name
Type
Description

cursor

string

페이지네이션을 위한 커서

customObjectId

string

액티비티를 조회하려는 커스텀 오브젝트 레코드의 id

types

string

조회할 활동 유형 목록. 여러 값은 쉼표로 구분합니다. 예: MemoCreate,RecordingCreate

startDate

string

조회 시작일. YYYY-MM-DD 또는 offset이 포함된 ISO date-time을 지원합니다. 날짜만 입력하면 KST 일 시작 시각으로 해석합니다.

endDate

string

조회 종료일. YYYY-MM-DD 또는 offset이 포함된 ISO date-time을 지원합니다. 날짜만 입력하면 KST 일 종료 시각으로 해석합니다.

Response

{
    "success": true,
    "data": {
        "customObjectActivityList": [
            {
                "id": "<customObjectActivityId>",
                "type": "<type>",
                "date": "2024-03-29T11:16:26.207Z",
                "customObjectId": "<customObjectId>",
                "meetingId": "<meetingId>",
                "kakaoAlimtalkId": "<kakaoAlimtalkId>",
                "emailId": "<emailId>",
                "messageId": "<messageId>",
                "threadId": "<threadId>",
                "recordingId": "<recordingId>"
            }
        ],
        "nextCursor": "cursor"
    }
}
{
    "success": false,
    "message": "에러 메세지"
}

Last updated

Was this helpful?