Push Notifications

PUSH NOTIFICATIONS API

NotifyVisitors API endpoints enable you to send push notifications to the users to nudge them to perform an action on your site. You can send the notifications to all the subscribers, or a specific user, or any segment.

You can call on the below API to send push notifications to the users.

πŸ“˜

https://push.notifyvisitors.com/api/v1/

API ENDPOINTS FOR DIFFERENT PLATFORMS

NotifyVisitors provides different API Endpoints for different platforms :

Web

Android

IOS

πŸ“˜

Note:

You can send the push notifications on all these platforms to an individual, to a particular segment, or to all the subscribers.

API ENDPOINTS FOR DIFFERENT SEGMENTS

To Individual User

  • You can send notifications to the individual subscribers on the basis of their subscriber ID or User ID via the below API endpoint

https://push.notifyvisitors.com/api/v1/web/send

You have to send the post parameters such as title, message, URL of the notification of an individual subscriber to an API endpoint. Read below for more information.

To All The Subscribers

  • Call the below API endpoint to send notifications to all the subscribers.

https://push.notifyvisitors.com/api/v1/android/broadcast/all

The title, message, URL of the notification, and image have to be sent as the post parameters to the API endpoint.

To A Particular Segment

  • Call the below API endpoint to send notifications to subscribers of a particular
    segment.

https://push.notifyvisitors.com/api/v1/web/broadcast/segment

Title message, URL of the notification have to be sent as the post parameters to the API endpoint.

Pass the Parameter in Request Body

See the below example

curl --request POST \
  --url https://push.notifyvisitors.com/api/v1/web/send \
  --header 'accept: application/json' \
  --header 'content-type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --header 'x-brand-id: YOUR_BRAND_ID'\
  --data '{"user_id / subscription_id":"1234",
  "notification_id":3456,
  "title":"RATING FEEDBACK",
  "message":"TEST PUSH",
  "url":"https://www.notifyvisitors.com/"
  	}'

πŸ“˜

Note:

  • Replace YOUR_API_KEY with NotifyVisitors' API key.
  • Replace YOUR_BRAND_ID with NotifyVisitors' Brand id .

PARAMETERS

Below are the parameters you need to pass to the API endpoint for sending push notifications to the subscribers.

PARAMETERSTYPEDESCRIPTION
User id/subscription idstringUnique identification ID of the user
Notification idint64Unique Id that is assigned to the users
TagstringTags are assigned to the users to segment them on the basis of certain factors
Time-Default value for the time-to -live
TitlestringMaximum character limit for the title
URLstringCall to action URL
Image _URLstringImage URL must be on HTTPs URL
Hero_image URLstringURL needs to be on HTTPs. Works only for chrome subscribers
Button_one titlestringMaximum length of the call-to-action button, works only for chrome subscribers
Button_two titlestringAllowed only in chrome version and above
Button_two URLstringWorks only for chrome subscribers
segment_IDint64Unique segment ID
Schedule _datestringDate scheduled for sending push
Schedule_timestringTime scheduled for sending push
TimezonestringTime zone (default value 0)
Hero_image URLstringURL needs to be on HTTPs. Works only for chrome subscribers