API Reference

Before you interact with the API you need to have an account to create your first notifications channel and get the channel api key.

The most important endpoints are the Subscriptions code and the Send notification, those are the minimum necessary to work with API.

We recommend sending a notification to a user that already has subscribed to the notification channel, otherwise, the API returns 404 (subscription not found).

API Base URL: https://bnotify.io/api

Subscriptions code

Return the subscription code to display to your clients to subscribe the notifications channel. It returns the code plus the QR-Code image in base64.

GET

/channels/{channelId}/subscriptions/{iuid}/code

Subscriptions list

Return the list of all subscriptions for a specific notifications channel

GET

/channels/{channelId}/subscriptions

Subscriptions details

Return the details about specific subscription.

GET

/channels/{channelId}/subscriptions/{iuid}

Send notification

Send a notification to your client.

POST

/channels/{channelId}/notifications/{iuid}

Our API can notify your system about the subscriptions made by your clients, to integrate that check the next calbacks section.