Currently I'm using pindpoint sendMessages SDK for sending notifications through the APNS channel and its work fine. By using using SendMessages I can send messages to multiple endpoints.
{
"ApplicationId": "adknjafodnfldsnnflnfnsdfn",
"MessageRequest": {
"Addresses": {
"address1": {
"ChannelType": "APNS"
},
"address2": {
"ChannelType": "APNS"
}
},
"MessageConfiguration": {
"APNSMessage": {
"Title": "Sample Title",
"Body": "Sample Message",
"Sound": "default",
"Badge": 1
}
}
}
}
even if this can send to multiple devices, It uses same badge count. Every address receives same badge count. How can I send different badge count to multiple devices. Where can I override the Message configuration body, or is there any other SDK available for this? Thanks.