[
{
"channels": [
{
"channel": "telegram",
"to": "user_name",
"metaData": {
"retryOnFailure": true,
"parseMode": "html"
}
}
],
"subject": "OTP",
"message": "Your code is 0092",
"refId": "REF0092"
}
]
curl --location --request POST 'https://merchantapi.bill24.io/notification/v1/notificationmessage/send' \
--header 'Authorization: "Bearer [token get from Authorization]"' \
--header 'Content-Type: "application/json"' \
--data-raw '[
{
"channels": [
{
"channel": "telegram",
"to": "user_name",
"metaData": {
"retryOnFailure": true,
"parseMode": "html"
}
}
],
"subject": "OTP",
"message": "Your code is 0092",
"refId": "REF0092"
}
]'
{
"code": "SUCCESS",
"message": "Request success",
"data": [
{
"notificationId": "3b65274a-17aa-45ab-9af3-e39432976c12",
"status": 0,
"exception": "",
"channels": [
{
"channel": "telegram",
"to": "user_telegram_id",
"metaData": {
"retryOnFailure": true,
"parseMode": "html"
}
}
],
"subject": "OTP",
"message": "Your code is 0092",
"refId": "REF0092"
}
]
}