- Notification API
- Overview
- Full Example
- Authorization
- Notification Channel
POST
https://merchantapi.bill24.io/notification/v1/notificationmessage/send
Configuring Notification Channels (Email)#
Request
Header Params
Authorization
string
required
Example:
"Bearer [token get from Authorization]"
Content-Type
string
required
Example:
"application/json"
Body Params application/json
array of:
channels
array [object {3}]
required
channel
string
required
to
string
required
metaData
object
required
subject
string
required
message
string
required
refId
string
required
Example
[
{
"channels": [
{
"channel": "email",
"to": "example@example.com",
"metaData": {
"retryOnFailure": true,
"cc": "",
"bcc": "",
"attachments": "file url",
"separateTo": false
}
}
],
"subject": "OTP",
"message": "Your code is 0092",
"refId": "REF0092"
}
]
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
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": "email",
"to": "example@example.com",
"metaData": {
"retryOnFailure": true,
"cc": "",
"bcc": "",
"attachments": "file url",
"separateTo": false
}
}
],
"subject": "OTP",
"message": "Your code is 0092",
"refId": "REF0092"
}
]'
Responses
🟢200Success
application/json
Body
code
string
required
message
string
required
data
array [object {7}]
required
notificationId
string
required
status
integer
required
exception
string
required
channels
array [object {3}]
required
subject
string
required
message
string
required
refId
string
required
Example
{
"code": "SUCCESS",
"message": "Request success",
"data": [
{
"notificationId": "3b65274a-17aa-45ab-9af3-e39432976c13",
"status": 0,
"exception": "",
"channels": [
{
"channel": "email",
"to": "example@example.com",
"metaData": {
"retryOnFailure": true,
"cc": "",
"bcc": "",
"attachments": "file url",
"separateTo": false
}
}
],
"subject": "OTP",
"message": "Your code is 0092",
"refId": "REF0092"
}
]
}
🟠400Invalid input
🟠400Missing Field
Modified at 2025-03-10 11:38:09