Hello,
this idea would allow to pass custom values to localized push notification messages. Here is an example:
Push notification template:
ID: xyz
English content message: <CustomParams.Player> has sent you <CustomParams.Coins> coins!
German content message: ...
Cloud script:
server.SendPushNotificationFromTemplate({ Recipient: "target player ID", PushNotificationTemplateId: "xyz", CustomParams: { Player: "Peter", Coins: 1000 } });
Result for target player:
Peter has sent you 1000 coins!