Get notifications
The type of the notification.
The channel of the notification.
The title of the notification.
The content of the notification.
The action url of the notification.
The category of the notification.
The topic of the notification.
Flag to indicate if the notification is in test mode.
Contains the enums for the status of notifications.
The sort data field to sort. By default, the value is ID.
Specifies the sorting order type for a collection.
The page number of the pagination. Default value is 0.
The page size of the pagination. Default value is 200.
The brand URL of the request. This is used to identify the brand.
YOUR_BRAND_URLAuth-Key is required to authenticate the request. If missing, the server will return 401 Unauthorized.
YOUR_AUTH_KEYThe request was successful.
The user is not authorized to access the requested resource. The request is missing the required Auth-Key header.
API call exceeded rate limit due to too many requests.
GET /api/v1/notifications HTTP/1.1
Host: protocol.jframework.io
Brand-URL: text
Auth-Key: text
Accept: */*
{
"success": true,
"statusCode": 200,
"message": "The request was successful.",
"data": {
"items": [
{
"id": "sApKpllz4sAplsmzha",
"title": "Title",
"type": "Segment",
"channel": "InApp",
"content": "Content",
"actionURL": "https://example.com/action",
"category": "Category",
"topic": "Topic",
"sentTime": "2025-09-19T11:20:20.4765867+07:00",
"metadata": null,
"scheduledDate": null,
"status": "Sent",
"testMode": true
}
],
"totalItems": 1,
"pageNumber": null,
"pageSize": null
},
"errors": []
}Last updated
Was this helpful?