EVENT API GUIDE
NOTIFICATION SERVICE
The Notification service is a microservice that allows sending notifications through SMS, Email, and Push channels. Providers can be configured dynamically through the .env file.
Architectural Design Credit and Contact Information
The architectural design of this microservice is credited to.
For inquiries, feedback, or further information regarding the architecture, please direct your communication to:
Email:
We encourage open communication and welcome any questions or discussions related to the architectural aspects of this microservice.
Documentation Scope
Welcome to the official documentation for the Notification Service Event Publishers and Listeners. This document provides a comprehensive overview of the event-driven architecture employed in the Notification Service, detailing the various events that are published and consumed within the system.
Intended Audience
This documentation is intended for developers, architects, and system administrators involved in the design, implementation, and maintenance of the Notification Service. It assumes familiarity with microservices architecture and the Kafka messaging system.
Overview
This document outlines the key components of the Notification Service’s event-driven architecture, including the events that are published and consumed, the Kafka topics used, and the expected payloads for each event. It serves as a reference guide for understanding how events flow through the system and how different components interact with each other.
Kafka Event Publishers
Kafka Event Publisher: sendEmailNotification
Event Topic: airbnb3-notification-service-notification-email
When a notification is sent through the Email channel, this publisher is responsible for sending the notification to the Kafka topic airbnb3-notification-service-notification-email. The payload of the event includes the necessary information for sending the email, such as recipient details, subject, and message body.
Kafka Event Publisher: sendPushNotification
Event Topic: airbnb3-notification-service-notification-push
When a notification is sent through the Push channel, this publisher is responsible for sending the notification to the Kafka topic airbnb3-notification-service-notification-push. The payload of the event includes the necessary information for sending the push notification, such as recipient details, title, and message body.
Kafka Event Publisher: sendSmsNotification
Event Topic: airbnb3-notification-service-notification-sms`
When a notification is sent through the SMS channel, this publisher is responsible for sending the notification to the Kafka topic airbnb3-notification-service-notification-sms. The payload of the event includes the necessary information for sending the SMS, such as recipient details and message body.
Kafka Event Listeners
Kafka Event Listener: runEmailSenderListener
Event Topic: airbnb3-notification-service-notification-email
When a notification is sent through the Email channel, this listener is triggered. It consumes messages from the airbnb3-notification-service-notification-email topic, parses the payload, and uses the dynamically configured email provider to send the notification.
Kafka Event Listener: runPushSenderListener
Event Topic: airbnb3-notification-service-notification-push
When a notification is sent through the Push channel, this listener is triggered. It consumes messages from the airbnb3-notification-service-notification-push topic, parses the payload, and uses the dynamically configured push provider to send the notification.
Kafka Event Listener: runSmsSenderListener
Event Topic: airbnb3-notification-service-notification-sms
When a notification is sent through the SMS channel, this listener is triggered. It consumes messages from the airbnb3-notification-service-notification-sms topic, parses the payload, and uses the dynamically configured SMS provider to send the notification.
Kafka Event Listener: runaccountVerificationCodeSentListener
Event Topic: auth.user.verificationRequested
When a notification is sent through the auth.user.verificationRequested topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (``).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runbookingRequestCreatedListener
Event Topic: bookingManagement.reservation.created
When a notification is sent through the bookingManagement.reservation.created topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (ReservationDetailView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runbookingConfirmedGuestListener
Event Topic: bookingManagement.reservation.statusChanged
When a notification is sent through the bookingManagement.reservation.statusChanged topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (ReservationDetailView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runbookingConfirmedHostListener
Event Topic: bookingManagement.reservation.statusChanged
When a notification is sent through the bookingManagement.reservation.statusChanged topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (ReservationDetailView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runbookingDeclinedListener
Event Topic: bookingManagement.reservation.statusChanged
When a notification is sent through the bookingManagement.reservation.statusChanged topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (ReservationDetailView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runpaymentReceivedGuestListener
Event Topic: bookingManagement.paymentRecord.created
When a notification is sent through the bookingManagement.paymentRecord.created topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (PaymentRecordView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runpaymentReceivedHostListener
Event Topic: bookingManagement.paymentRecord.created
When a notification is sent through the bookingManagement.paymentRecord.created topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (PaymentRecordView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runreservationCancelledGuestListener
Event Topic: bookingManagement.reservation.statusChanged
When a notification is sent through the bookingManagement.reservation.statusChanged topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (ReservationDetailView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runreservationCancelledHostListener
Event Topic: bookingManagement.reservation.statusChanged
When a notification is sent through the bookingManagement.reservation.statusChanged topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (ReservationDetailView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runnewMessageReceivedGuestListener
Event Topic: messaging.message.created
When a notification is sent through the messaging.message.created topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (MessageThreadView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runnewMessageReceivedHostListener
Event Topic: messaging.message.created
When a notification is sent through the messaging.message.created topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (MessageThreadView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: rundisputeStatusUpdatedGuestListener
Event Topic: bookingManagement.dispute.statusChanged
When a notification is sent through the bookingManagement.dispute.statusChanged topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (disputeDetailView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: rundisputeStatusUpdatedHostListener
Event Topic: bookingManagement.dispute.statusChanged
When a notification is sent through the bookingManagement.dispute.statusChanged topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (disputeDetailView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runreviewPublishedGuestListener
Event Topic: reviewSystem.review.published
When a notification is sent through the reviewSystem.review.published topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (ReviewDisplayView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runreviewPublishedHostListener
Event Topic: reviewSystem.review.published
When a notification is sent through the reviewSystem.review.published topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (ReviewDisplayView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runadminModerationRequiredDisputeListener
Event Topic: bookingManagement.dispute.created
When a notification is sent through the bookingManagement.dispute.created topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (disputeDetailView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runadminModerationRequiredMessageReportListener
Event Topic: messaging.messageReport.created
When a notification is sent through the messaging.messageReport.created topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (``).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runadminModerationRequiredReviewListener
Event Topic: reviewSystem.review.created
When a notification is sent through the reviewSystem.review.created topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (ReviewDisplayView).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runemailVerificationListener
Event Topic: airbnb3-user-service-email-verification-start
When a notification is sent through the airbnb3-user-service-email-verification-start topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (``).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runmobileVerificationListener
Event Topic: airbnb3-user-service-mobile-verification-start
When a notification is sent through the airbnb3-user-service-mobile-verification-start topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (``).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runpasswordResetByEmailListener
Event Topic: airbnb3-user-service-password-reset-by-email-start
When a notification is sent through the airbnb3-user-service-password-reset-by-email-start topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (``).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.
Kafka Event Listener: runemail2FactorListener
Event Topic: airbnb3-user-service-email-2FA-start
When a notification is sent through the airbnb3-user-service-email-2FA-start topic, this listener is triggered. It processes the message, extracts required metadata, and constructs a notification payload using a predefined template ([object Object]).
It supports condition-based filtering and optionally enriches the payload by retrieving data from ElasticSearch if the dataView source is used (``).
The notification is sent to the target(s) identified in the payload or in the retrieved data source using the Notification Service.