I am currently using nodejs but the answer can be in any language. Currently when I push a notification that an update on the card has been done the message appears as:
const notification = new Notification(deviceToken, {
"type": PushType.alert,
priority: Priority.immediate,
alert: {
title: "Hello World",
body: "Your first notification!",
},
badge: 1,
sound: 'default',
topic: 'pass.ai.XXX.XXX',
});
organizationName
Pass changed
How can I customize the notification?