# Notifications Use these endpoints for interacting with Notifications. ## List Notifications - [GET /api/v1/notifications/](https://docs.jiko.io/products/customer-api/reference/notifications/list_notifications_api_v1_notifications__get.md): This endpoint lists all notifications for a customer. You can filter by status (READ or UNREAD). It returns a paginated list of CustomerNotification objects. ## Get Notification - [GET /api/v1/notifications/{notification_id}/](https://docs.jiko.io/products/customer-api/reference/notifications/get_notification_api_v1_notifications__notification_id___get.md): This endpoint retrieves a single notification by its notification_id, and returns a CustomerNotification object. ## Patch Notification - [PATCH /api/v1/notifications/{notification_id}/](https://docs.jiko.io/products/customer-api/reference/notifications/patch_notification_api_v1_notifications__notification_id___patch.md): This endpoint allows you to update the status of a notification, for example, to mark it as read. The request body must contain an UpdateCustomerNotificationStatus object. It returns the updated CustomerNotification object.