개인화 데이터
Last updated
curl --location --request POST 'https://api.groobee.io/personalizations' \
--header 'x-api-key : ${x-api-key}'
--header 'Content-Type: application/json' \
--data-raw '[
{
"memberId" : "groobee1",
"phoneNumber" : "010-0000-2222",
"properties" : {
"key1" : "그루비1",
"key2" : "value2",
"key3" : "value3"
}
},
{
"memberId" : "groobee2",
"phoneNumber" : "010-3333-4444",
"properties" : {
"key1" : "그루비2",
"key2" : "value5",
"key3" : "value6"
}
}
]'{
"httpStatus": {
"code": "200",
"reasonPhrase": "OK"
},
"processCode": "0",
"processValue": true
}{
"httpStatus": {
"code": "400",
"reasonPhrase": "Bad Request"
},
"processCode": "-9998",
"processValue": {
"message": "전송데이터에 오류가 있습니다",
"errors": [
"properties: 널이어서는 안됩니다"
]
}
}