Goal:
- Send FCM data payload (not only notification title/body)
Novu setup:
- Cloud
- Novu version: Latest version
- Workflow ID: om-landmark-push
- Step: Push (FCM)
Trigger payload I send:
{
title: 'example text',
message: 'This is an example message.',
data: {
message: 'This is inner data message',
id: '634355',
page: 'home'
}
}
Problem:
Firebase client console receives only:
{
notification: { title: "...", body: "..." }
}
No data payload.
What I tried:
- overrides.fcm.type = 'data'
- overrides.fcm.data = {...}
Expected:
payload should include "data": { ... } or receive data in onBackgroundMessage.