웹훅으로 SMS 문자 보내기 (비즈뿌리오)
마지막 업데이트
curl https://api.bizppurio.com/v3/message \
-X POST \
-H "Content-Type": "application/json" \
-H "Authorization": "{{user_properties.authorization_type}} {{user_properties.access_token}}" \
-d '{
"account": "bizppurio_account123",
"type": "SMS",
"from": "+821012345678",
"to": "{{user_properties["phone-number"] | default: ""}}",
"country": "KR",
"content": {
"sms": {
"message": "메시지"
}
},
"refkey": "REFKEY123456789",
"userinfo": "DEPT_CODE001",
"resend": {
"account": "test",
"messagekey": "190922175225820#ft002951servj8FU67"
},
"recontent": {
"sms": {
"message": "대체 메시지"
}
},
"resellercode": "RESELLER_CODE001",
"sendtime": "2024-04-27T15:30:00Z"
}'