curl --request POST \
--url https://api.notifly.tech/messages/kakao-friendtalk \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"projectId": "example_project_1234567890abcdef",
"messageType": "text",
"isAd": false,
"recipientList": [
{
"recipientNo": "01012345678",
"content": {
"text": "안녕하세요! 새로운 이벤트 소식을 알려드립니다."
}
}
]
}
'