Messages Sent By Your Service

The following variables can reference Mobile Terminated (MT) SMS messages sent by your services.

Variable

Description

Type

request.mt.smsId

This returns the SMS ID of the most recent MT sent to an end user in a session.

If your message was a multipart message, then this variable returns the first part of the message.

You can use this variable in the Services tab only.

String

request.mt.
part[0..n].smsId

This returns the SMS ID of the most recent MT message sent in a session. This variable enables you to specify specific parts of a multipart message.

Change the number in the brackets [] to reference the specific part. For example, the SMS ID for the first part of a multipart message is accessed using the variable:

request.mt.part[0].smsId

The SMS ID of the second part of a multipart message is accessed using the variable:

request.mt.part[1].smsId

Note that if the SMS sent by the session is not a multipart message, then only request.mt.part[0].message will return a value.

You can use this variable in the Services tab only.

Integer

request.mt.isMultipart

Whether the most recent SMS message sent in the session was a multipart message or not. This variable returns true if the SMS message is multipart.

You can reference this variable in the Services tab only.

Boolean