How do I get action buttons to show from a PN sent from server code? This doesnt seem to work, the notification shows up but without the button:
Apperyio.PN.send(pushApiKey, {
payload: {
"title": "TITLE",
Code: Select all
"message": message,
"additionalData": [{
"page": "page"
}],
"actionButtons": [{
"buttonTitle": "View",
"buttonCallback": "pushOpenPage"
}]
}
});