API Endpoint for Retrieving Notification Status

The following is the Blerify API endpoint used to retrieve the status and detailed information of a specific push notification sent to a user:

Get Notification Status Endpoint

  • Description: This endpoint is used to query the status of a single notification item that was previously sent as part of a notification group. It provides detailed information including timestamps and the current delivery state of the notification.

  • HTTP Method: GET

  • Endpoint URL: {{api-host}}/api/v1/organizations/{{organization-id}}/notifications/{{notification-group-id}}/items/{{_item-id}}

Get Notification Status

Example Workflow

  1. After sending notifications in bulk using the "Send Bulk Notifications" endpoint, each item in the response contains a unique _item-id.

  2. To track the delivery or read status of a specific user’s notification, call this endpoint using the organization-id, notification-group-id, and _item-id.

  3. The response includes:

    • Delivery status (sent, received, read, etc.).

    • Timestamps for each phase of the notification lifecycle.

    • Dynamic content (e.g., Amount) tied to the notification item.

Last updated