Hi
The push notification templates are awesome.
However in our methodology we provide a user table where admin can select which users they want to send push notifications to, based on different types of criteria. We can still do this, but what would be really powerful is somehow combine this with the new templates. i.e set up a push template on the console (without the who bit just the content) and then in the api send this push template just to selected devices
rather like a cross over between
Backendless.Messaging.pushWithTemplate( templateName )
and a push notification to individual devices
deliveryOptions = new Backendless.DeliveryOptions({
pushSinglecast: [“dummyDeviceId_001”, “dummyDeviceId_002”] // devices IDs
});
something like
Backendless.Message.pushWithTemplate(“templateName”, [“deviceID01”, “deviceID02”])
That would give massive flexibility. It might be one for the future, but is there any work around now which could achieve this?
Mike