curl --request POST \
--url https://api.sendrealm.com/push/notifications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"app_id": "<string>",
"to": {
"token": "<string>",
"device_id": "<string>"
},
"notification": {
"title": "<string>",
"body": "<string>",
"image_url": "<string>",
"launch_url": "<string>"
},
"include_aliases": {
"external_id": [
"<string>"
],
"email": [
"jsmith@example.com"
]
},
"data": {},
"android": {
"channel_id": "<string>",
"small_icon": "<string>",
"large_icon": "<string>",
"big_picture": "<string>",
"category": "<string>",
"sound": "<string>",
"lockscreen_visibility": "<string>",
"led_color": "<string>",
"accent_color": "<string>",
"ttl": "<string>"
},
"ios": {
"sound": "<string>",
"badge": 1,
"category": "<string>",
"thread_id": "<string>",
"mutable_content": true
}
}
'