API

레코드 조회

작성일 2026.03.24 | 수정일 2026.03.25

GET/crm-core/v1/records/:recordId
Parameters
:recordId*— 레코드 고유 아이디

특정 레코드의 상세 정보를 조회합니다. 속성 값은 EAV(Entity-Attribute-Value) 패턴으로 저장된 데이터가 병합되어 반환됩니다.

Response

NameTypeRequiredDescription
recordIdstring*레코드 고유 아이디
accountIdstring*계정 고유 아이디
entityIdstring*개체 ID
namestring*레코드 이름
dataObject레코드 데이터 (속성 ID를 키로, 속성 값을 값으로 하는 객체)
tagsArray<String>태그 목록
linksObject연결 목록
ownerIdstring소유자 멤버 ID
profileImageObject프로필 이미지
fileIdstring*파일 고유 아이디
urlstring*이미지 URL (서명된 URL)
thumbnailUrlstring썸네일 URL (서명된 URL)
fileNamestring*파일 이름
fileSizenumber*파일 크기 (바이트)
mimeTypestring*MIME 타입
imagesArray<Object>이미지 목록
fileIdstring*파일 고유 아이디
urlstring*이미지 URL (서명된 URL)
thumbnailUrlstring썸네일 URL (서명된 URL)
fileNamestring*파일 이름
ordernumber*이미지 순서
isDeletedboolean*삭제 여부
dateCreateddate*최초 생성 날짜
dateUpdateddate*최근 수정 날짜

Structure

Response Structure
{ "recordId": "REC20260324090000ABCDEFGHIJKLMNO", "accountId": "24010100001234", "entityId": "ENT20260324090000ABCDEFGHIJKLMNO", "name": "샘플", "data": { "propertyId1": "value1", "propertyId2": "value2" }, "tags": [ "샘플값" ], "links": { "key": "value" }, "ownerId": "MEM20260324090000ABCDEFGHIJKLMNO", "profileImage": { "fileId": "FILE20260324090000ABCDEFGHIJKLMN", "url": "https://storage.solapi.com/files/sample.pdf", "thumbnailUrl": "샘플값", "fileName": "document.pdf", "fileSize": 20, "mimeType": "application/pdf" }, "images": [ { "fileId": "FILE20260324090000ABCDEFGHIJKLMN", "url": "https://storage.solapi.com/files/sample.pdf", "thumbnailUrl": "샘플값", "fileName": "document.pdf", "order": 1 } ], "isDeleted": true, "dateCreated": "2026-03-24T09:00:00.000Z", "dateUpdated": "2026-03-24T09:00:00.000Z" }