딜 액티비티 목록 조회

GET /v2/deal/activity

딜 액티비티 목록을 조회합니다.

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query parameters

NameTypeDescription

cursor

string

페이지네션을 위한 커서

Response

{
    "success": true,
    "data": {
        "dealActivityList": [
            {
                "id": "<dealActivityId>",
                "type": "<type>",
                "date": "2024-03-29T11:16:26.207Z",
                "dealStatus": "<status>",
                "dealId": "<dealId> or <leadId>",
                "webFormId": "<webFormId>",
                "smsId": "<smsId>",
                "todoId": "<todoId>",
                "memoId": "<memoId>",
                "emailMessageId": "<emailMessageId>",
            }
        ],
        "nextCursor": "cursor"
    }
}

Last updated