curl --request POST \
--url https://api.notifly.tech/messages/text-message \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"projectId": "example_project_1234567890abcdef",
"type": "sms",
"body": "Message Body",
"recipientList": [
{
"recipientNo": "01012345678"
}
]
}
'