Links
🔔

Notify all devices or teams

APIs to send push notification to all devices connected to your account or or a team.
The targeting is based on which API key you specify in the request:
  • If you use you account API key the notification will be send to all devices in your account.
  • If you specify a team API key then the notification will be send to all devices for every member in the team.
Your API Key is required for making any requests using our API, you can find it inside the console. https://push.techulus.com/console

There are 3 ways you can make this request (Synchronous):

post
https://push.techulus.com
/api/v1/notify
Send Notification (API key in header)
post
https://push.techulus.com
/api/v1/notify/{api_key}
Send Notification (API key in path)
get
https://push.techulus.com
/api/v1/notify/{api_key}?title={title}&body={body}
Send Notification, API Key in path and content as query

We recommend the asynchronous API if you've more than 10 devices:

post
https://push.techulus.com
/api/v1/notify-async
Send Notification (API key in header)

Sample Request body

{
"title": "Welcome to Push by Techulus",
"body": "This is your first notification"
}