Method: MessageTemplates#get_message_templates

Defined in:
lib/user/content/message_templates.rb

#get_message_templates(options = nil) ⇒ Object

Get message templates.

Get a collection of message templates.

Parameters

options

(Hash) – List of Resource Collection Options shown above can be used as parameter.

First Example

@data = @mints_user.get_message_templates

Second Example

options = { "fields": "id" }
@data = @mints_user.get_message_templates(options)


98
99
100
# File 'lib/user/content/message_templates.rb', line 98

def get_message_templates(options = nil)
    return @client.raw("get", "/content/message-templates", options)
end