리드 히스토리 목록 조회

GET /v2/deal/history

딜 또는 리드의 히스토리 목록을 조회합니다.

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query parameters

NameTypeDescription

cursor

string

페이지네션을 위한 커서

Response

{
    "success": true,
    "data": {
        "dealHistoryList": [
            {
                "id": "<historyId>",
                "dealId":"<dealId>",
                "type": "<type>",
                "people": null,
                "organization": null,
                "fieldName": "필드 이름",
                "fieldValue": "필드 값",
                "ownerId": "<ownerId>",
                "createdAt": "2024-03-29T11:16:26.207Z"
            }
        ],
        "nextCursor": "cursor"
    }
}

Last updated