APN UDRs
The APN UDR types include the following UDRs:
APNUDR
APNResult
APNUDR
When the APN agent receives an APNUDR
, it sends the message to the Apple device referenced by the DeviceToken
.
APNUDR UDR Fields
The following fields are included in the APNUDR
UDR:
Field | Description |
---|---|
| This field contains the content of the text message to be sent. |
| This field contains a custom message with all the tags to be included. When populated (not set to null), it will override the contents of the Example - CustomPayload{"acme2" : [ "bang", "whiz" ]} |
| This field contains the token for the device that will receive the message. |
| This field contains the title of the text message to be sent. |
Example - Generated message from Body and Title fields
APL:
consume {
APNUDR aUDR = udrCreate(APNUDR);
aUDR.Body ="This is an example.";
aUDR.DeviceToken="7bd78578c2d702201cb291cdec4ad8e736c893b531deae602451e80617b53ae9";
aUDR.Title="Example Title";
udrRoute(aUDR);
}
Message:
{"aps":{"alert":{"body":"This is an example.","title":"Example Title"}}}
APNResult
Once the APN agent has sent a text message in response to an APNUDR
UDR, it returns an APNResult
UDR.
APNResult UDR Fields
The following fields are included in the APNUDR
UDR:
Field | Description |
---|---|
| This field indicates the result of the push notification attempt, with the following result codes:
|
| This field provides a description for each result code:
|
| This field contains the original |