You can create messages with advanced features such as piped text and custom look and feel as long as you provide the former using the Qualtrics format and html for the second. The best is to use the 'get_message function' in order to view the structure of an existing message.

create_message(library_id, category, description, messages)

Arguments

library_id

The library id can be one of the following IDs: User ID, Group ID, ThreeSixty ID (see 'list_libraries')

category

invite, inactiveSurvey, reminder, thankYou, endOfSurvey, general, validation, lookAndFeel, emailSubject, smsInvite

description

defines a description for the message

messages

A JSON object - mapping language codes to messages

Value

id of created message

Examples

if (FALSE) { message = list( "en" = "Thank you for taking this survey.", "fr" = "Merci de participer à cette enquête.") create_message("UR_0NXtl92JJWqfWcJ", "invite", "My New Invite Message", message) }