CreateSmsConversation

CreateSmsConversation While MobileConnect includes the ability to create conversations through assigning Next Keywords to message templates, this function provides the ability to conditionally create a conversation and can dynamically define the Next Keyword to use,...

Mod

Mod This function returns the remainder after the division of two numbers (also known as a modulo operation). Arguments Mod(1,2) Ordinal Type Required Description 1 Number True Value to be divided (dividend) 2 Number True Value to divide by (divisor) NOTE: This...

EndSmsConversation

EndSmsConversation This function will end an active conversation-based on a given short or long code and a Contact’s mobile number. Once a conversation ends, it will allow the Contact to send other MO messages related to the short or long code, otherwise the...

Multiply

Multiply This function returns the product of multiplying two numbers. Arguments Multiply(1,2) Ordinal Type Required Description 1 Number True Value to be multiplied 2 Number True Value to be multiplied Example %%[ var @product, @num1, @num2 set @num1 = 5 set @num2 =...

SetSmsConversationNextKeyword

SetSmsConversationNextKeyword This function will set the keyword for the next message in a conversation. It does not create a new conversation. Rather, it sets the next conversation path similar to CreateSmsConversation, but for an existing conversation. The Next...

Random

Random This function returns a random number between two numbers. Both upper and lower bound parameters are inclusive. Arguments Random(1,2) Ordinal Type Required Description 1 Number True Value of lower bound 2 Number True Value of upper bound Example %%[ var...