This endpoint lists all notifications for a customer. You can filter by status (READ or UNREAD).
It returns a paginated list of CustomerNotification objects.
Security
CodeBearer(Required scopes: notifications.read)
- Production serverhttps://api.business.jiko.io/api/v1/notifications/
- Sandbox serverhttps://customer-api.sandbox-api.jikoservices.com/api/v1/notifications/
curl -i -X GET \
'https://api.business.jiko.io/api/v1/notifications/?status=READ&cursor=&limit=100' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "prev_page": "string", "next_page": "string", "items": [ { … } ], "object_type": "CursorList" }