Notifications
Create a notification
const notification = await exh.notificationsV2.create({
targetUserId: userId,
title: 'Hello from Extra Horizon',
descriptions: 'Welcome to our platform'
});
console.log('Notification was created with id:', notification.id);
console.log('Notification was sent to a device:', notification.sent);List notifications
const notification = await exh.notificationsV2.findById(notificationId);
console.log('Notification was sent to:', notification.targetUserId);Last updated