API

속성 목록 조회

작성일 2026.03.24 | 수정일 2026.04.29

GET/crm-core/v1/properties

속성 목록을 조회합니다. 개체별 필터링·이름 키워드 검색을 지원합니다. 페이지네이션 없이 최신 생성순으로 최대 500건을 반환합니다. 마스킹된 DROPDOWN/RADIO/MULTI_CHECKBOX 속성의 options는 빈 배열로 응답됩니다.

Query Params

NameTypeRequiredDescription
entityIdstring특정 개체의 속성만 조회
keywordstring속성 이름 검색 키워드 (포함 매칭)

Response

NameTypeRequiredDescription
[]array*속성 목록
propertyIdstring*속성 고유 ID
accountIdstring*계정 고유 ID
workspaceIdstring워크스페이스 ID (워크스페이스에 속한 경우)
entityIdstring*속한 개체 ID
namestring*속성 이름
descriptionstring속성 설명 (입력하지 않으면 응답에서 생략됨)
fieldTypestring*필드 유형
propertyGroupIdstring | null속성 그룹 ID
optionsarray*선택 옵션 (DROPDOWN 등)
labelstring옵션 레이블
valuestring옵션 저장 값
prioritynumber우선순위
colorstring옵션 색상 (hex)
isMaskedboolean*마스킹 여부
keystring | null속성 키
createdBystring생성한 멤버 ID
dateCreateddate*생성 시각 (UTC)
dateUpdateddate*수정 시각 (UTC)

Structure

코드 예제

const crypto = require('crypto');

const apiKey = 'NCSXXXXXXXXXXXXX';
const apiSecret = 'YOUR_API_SECRET';
const dateTime = new Date().toISOString();
const salt = crypto.randomBytes(16).toString('hex');
const signature = crypto.createHmac('sha256', apiSecret).update(dateTime + salt).digest('hex');
const authHeader = HMAC-SHA256 apiKey=${apiKey}, date=${dateTime}, salt=${salt}, signature=${signature};

const response = await fetch('https://api.solapi.com/crm-core/v1/properties', {
method: 'GET',
headers: { 'Authorization': authHeader, 'Content-Type': 'application/json' }
});
const data = await response.json();

import hmac, hashlib, secrets, requests
from datetime import datetime, timezone

api_key = 'NCSXXXXXXXXXXXXX'
api_secret = 'YOUR_API_SECRET'
date_time = datetime.now(timezone.utc).strftime('%Y-%m-%dT%H:%M:%SZ')
salt = secrets.token_hex(16)
signature = hmac.new(api_secret.encode(), (date_time + salt).encode(), hashlib.sha256).hexdigest()
auth_header = f'HMAC-SHA256 apiKey={api_key}, date={date_time}, salt={salt}, signature={signature}'

response = requests.get('https://api.solapi.com/crm-core/v1/properties', headers={
'Authorization': auth_header,
'Content-Type': 'application/json'
}, params={
"entityId": "CRMET1260423081530123XYZ11122233"
})
data = response.json()

API_KEY="NCSXXXXXXXXXXXXX"
API_SECRET="YOUR_API_SECRET"
DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
SALT=$(openssl rand -hex 16)
SIGNATURE=$(echo -n "${DATE}${SALT}" | openssl dgst -sha256 -hmac "${API_SECRET}" | awk '{print $NF}')
AUTH="HMAC-SHA256 apiKey=${API_KEY}, date=${DATE}, salt=${SALT}, signature=${SIGNATURE}"

curl -X GET 'https://api.solapi.com/crm-core/v1/properties' \
-H "Authorization: ${AUTH}" \
-H "Content-Type: application/json"

lightbulb

**401 응답**: `{ "errorCode": "Unauthorized", "errorMessage": "권한이 없습니다." }`