SendNormalizedToSegments
This operation sends a normalized message to multiple user targets.
Results
Name | Description |
---|---|
estimatedTargets | Estimate number of targeted users |
Service | Operation |
---|---|
pushNotification | SEND_NORMALIZED_TO_SEGMENTS |
Method Parameters
Parameter | Description |
---|---|
alertContent | Body and title of message in JSON format. |
customData | Custom parameters to include in message. |
segmentIdList | List of target segments. Omit to send to all users. |
Usage
http://localhost:3000
- C#
- C++
- Objective-C
- Java
- JavaScript
- Dart
- Cloud Code
- Raw
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
var alertContent = {
"body": "content of message",
"title": "message title"
};
var customData = {
"field1": "value1",
"field2": "value2"
};
var segmentIdList = [
1,
2
];
var pushNotificationProxy = bridge.getPushNotificationServiceProxy();
var postResult = pushNotificationProxy.sendNormalizedToSegments(alertContent, customData, segmentIdList);
if (postResult.status == 200) {
// Success!
}
{
"service": "pushNotification",
"operation": "SEND_NORMALIZED_TO_SEGMENTS",
"data": {
"alertContent": {
"body": "content of message",
"title": "message title"
},
"customData": {
"field1": "value1",
"field2": "value2"
},
"segmentIdList": [
1,
2
]
}
}
JSON Response
{
"packetId": 1,
"messageResponses": [
{
"status": 200,
"data": {
"estimatedTargets": 1234
}
}
]
}