파일 목록 조회
Last updated
Was this helpful?
Was this helpful?
curl -H "Authorization: Bearer <token>" \
"https://salesmap.kr/api/v2/file?objectType=deal&objectId=<dealId>"curl -H "Authorization: Bearer <token>" \
"https://salesmap.kr/api/v2/file?objectType=deal&objectId=<dealId>&cursor=<nextCursor>"{
"success": true,
"data": {
"fileList": [
{
"id": "<fileId>",
"name": "contract.pdf",
"createdAt": "2026-07-04T05:59:23.217Z",
"owner": {
"id": "<userId>",
"name": "홍길동"
}
}
],
"nextCursor": "<cursor>"
}
}{
"success": false,
"message": "에러 메세지"
}