Pushy Support
- Total activity 181
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 0
- Subscriptions 91
Articles
Recent activity by Pushy Support-
Can I transfer my Pushy app to another account?
Yes, as long as that account is subscribed to the same Pushy pricing plan as your own account. 1) Go to the Apps page 2) Click your app 3) Click App Settings 4) Click the arrow icon (Transfer App) ...
-
Can I share my Pushy app with other accounts?
We have the option of adding App Collaborators. This gives you the option to invite other accounts on Pushy to access and modify an app of yours. Have the person you want to grant access to sign up...
-
Does Pushy support scheduled notifications?
Yes! Pass in the schedule parameter to the Send Notifications API to control when a notification will be delivered. Specify the desired moment as a Unix timestamp: { "to": "a6345d0278adc55d3474...
-
Does Pushy support segmentation?
Yes, using Pub/Sub topic subscriptions. Similarly to segmenting, you can subscribe certain users to topics of your choice (e.g. /topics/en-US) and then send a push notification to all users subscr...
-
How can I customize the Android notification on React Native?
To customize the notification display and behavior, consider using a plugin called react-native-push-notification which allows granular configuration of Android local notifications. There is no ne...
-
Are notifications delivered to iOS users if they closed my app?
Yes. When your app is swiped away from recents, notifications will still be delivered and displayed in the system notification bar and lock screen, as long as the notifications you're sending aren'...
-
How can I customize the Android notification on Cordova-based platforms?
You can modify the native PushReceiver.java implementation to customize notification behavior. Instructions vary by platform: Ionic Flutter Cordova Capacitor PhoneGap More info: How can I custo...
-
How can I customize notifications on iOS?
Please use the notification object in the Send Notifications API to customize the display and behavior of iOS notifications, such as: Notification body Badge count Sound Localization To use a cus...
-
How can I customize notifications on Android?
On native Android, please modify the Push BroadcastReceiver implementation and use the NotificationCompat.Builder Android SDK methods to customize the notification. For example, to change the sou...
-
How can I decide when notifications expire?
Please use the time_to_live parameter in the Send Notifications API to specify for how long (in seconds) Pushy will try to deliver the notification to offline devices. The default value is 1 month...