This call is particularly useful is you want to update the translations and/or languages available for a given library message.
update_message(library_id, message_id, description, messages)
| library_id | The Library ID can be one of the following IDs: User ID, Group ID, ThreeSixty ID |
|---|---|
| message_id | Message ID |
| description | defines a description for the message |
| messages | A JSON object mapping language codes to messages. Existing languages will be replaced; others will be added |
A tibble.
The message id can be found using the 'list_messages' call.
if (FALSE) { message = list( "en" = "Thank you again for taking this survey.", "es" = "Gracias por participar en esta encuesta") update_message( "UR_0NXtl92JJWqfWcJ", "MS_3qR8d4mAkgD0fKl", "My Most Recent Invite Message", message) }