노트 목록 조회
Last updated
Was this helpful?
Was this helpful?
curl -X GET 'https://salesmap.kr/api/v2/memo?dealId=<dealId>' \
-H 'Authorization: Bearer <token>'curl -X GET 'https://salesmap.kr/api/v2/memo?startDate=2026-01-01T00:00:00.000Z&endDate=2026-06-30T23:59:59.999Z&ownerId=<userId>' \
-H 'Authorization: Bearer <token>'{
"success": true,
"data": {
"memoList": [
{
"id": "<memoId>",
"cursorId": "<cursorId>",
"text": "메모 내용",
"htmlBody": "<p>메모 내용</p>",
"typeList": [
{
"_id": "<typeId>",
"value": "회의록",
"color": "blue"
}
],
"dealId": "<dealId>",
"leadId": null,
"peopleId": null,
"organizationId": null,
"productId": null,
"quoteId": null,
"todoId": null,
"parentId": null,
"ownerId": "<userId>",
"updatedAt": "2024-04-03T05:59:23.217Z",
"createdAt": "2024-04-03T05:59:23.217Z"
}
],
"nextCursor": "cursor"
}
}{
"success": false,
"message": "에러 메세지"
}