Courier's mobile SDK enables your developers to deliver modern notification UX by programmatically managing tokens across devices and adding a notification inbox.
Request a Demo
Courier's mobile inbox gives your users a single place to view all notification activity on their mobile device, allowing them to view notifications even if they do not have push enabled.
Courier’s mobile SDK gives you fine-grained control over push tokens across devices.
Send up to 10,000 notifications every month, for free.
Get started for free
Send up to 10,000 notifications every month, for free.
Get started for free
© 2024 Courier. All rights reserved.
1// Register multiple devices for a given user. Notifications2// will be delivered to each device in a single send call3{4"tokens": [5{6"token": "abc123",7"provider_key": "apn",8"properties": {9"test": true10},11"device": {12"app_id": "com.my.app",13"platform": "iOS",14"model": "iPhone 13"15}16},17{18"token": "cba321",19"provider_key": "firebase-fcm",20"tracking": {21"ip": "127.0.0.1",22"lat": "0.0",23"long": "123"24}25}26]27}