Skip to main content
Version: 5.7.0

SendRichToSegments

This operation sends a template based message to multiple user targets.

Example of substitution usage:

Message could be You have won a {2} for entering the {1} contest.

Substitutions parameter would be { "1" : "User Appreciation", "2", "User Appreciation Prize" }

Results

NameDescription
estimatedTargetsEstimate number of targeted users
ServiceOperation
pushNotificationSEND_RICH_TO_SEGMENTS

Method Parameters

ParameterDescription
notificationTemplateIdIdentifies the template that will determine the message content.
segmentIdListList of target segements. Omit to send to all users.
substitutionsPositional message substitution values.

Usage

http://localhost:3000
// S2S call: to view example, switch to the Cloud Code or Raw tab.
JSON Response
{
"packetId": 1,
"messageResponses": [
{
"status": 200,
"data": {
"estimatedTargets": 1234
}
}
]
}