추적 키 생성
작성일 2026.03.24 | 수정일 2026.03.25
POST
/crm-core/v1/tracking-keys새로운 추적 키를 생성합니다. MEMBER 이상 권한이 필요합니다.
lightbulb
생성 시 반환되는 추적 키(rawKey)는 최초 1회만 확인할 수 있습니다.
이후에는 키의 접두사(keyPrefix)만 조회됩니다. 반드시 안전한 곳에 저장하세요.
Body Params
Response
Structure
Request Structure
{
"name": "샘플",
"allowedDomains": [
"샘플값"
],
"defaultEntityId": "ID_SAMPLE_12345",
"permissions": {
"createRecords": true,
"trackEvents": true
}
}
Response Structure
{
"trackingKeyId": "TK20260324090000ABCDEFGHIJKLMNOP",
"accountId": "24010100001234",
"name": "샘플",
"rawKey": "샘플값",
"keyPrefix": "샘플값",
"allowedDomains": [
"샘플값"
],
"defaultEntityId": "ID_SAMPLE_12345",
"permissions": {
"createRecords": true,
"trackEvents": true
},
"isActive": true,
"dateCreated": "2026-03-24T09:00:00.000Z",
"dateUpdated": "2026-03-24T09:00:00.000Z"
}