이벤트 전송
마지막 업데이트
curl -i -X POST \
'https://api.hackle.io/v1/track' \
-H 'X-HACKLE-API-KEY: YOUR_SDK_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"event": {
"key": "purchase",
"properties": {
"paymentMethod": "CARD",
"discountAmount": 420
}
},
"user": {
"userId": "19285035",
"deviceId": "ae2182e0",
"identifiers": {
"sessionId": "16930492542",
"myCustomId": "ff01eae2"
},
"properties": {
"grade": "GOLD",
"age": 30,
"isLogin": true
}
}
}'