Class: Iterable::EmailTemplates

Inherits:
ApiResource show all
Defined in:
lib/iterable/email_templates.rb

Overview

Interact with /templates/email API endpoints

Examples:

Creating email templates endpoint object

# With default config
templates = Iterable::EmailTemplates.new
templates.get

# With custom config
conf = Iterable::Config.new(token: 'new-token')
templates = Iterable::EmailTemplates.new(config)

Instance Attribute Summary

Attributes inherited from ApiResource

#conf

Instance Method Summary collapse

Methods inherited from ApiResource

#default_config, default_config, #initialize

Constructor Details

This class inherits a constructor from Iterable::ApiResource

Instance Method Details

#get(template_id, params = {}) ⇒ Object



31
32
33
34
# File 'lib/iterable/email_templates.rb', line 31

def get(template_id, params = {})
  params['templateId'] = template_id
  Iterable.request(conf, '/templates/email/get', params).get
end

#update(template_id, attrs = {}) ⇒ Object



50
51
52
53
# File 'lib/iterable/email_templates.rb', line 50

def update(template_id, attrs = {})
  attrs['templateId'] = template_id
  Iterable.request(conf, '/templates/email/update').post(attrs)
end

#upsert(client_template_id, attrs = {}) ⇒ Object



69
70
71
72
# File 'lib/iterable/email_templates.rb', line 69

def upsert(client_template_id, attrs = {})
  attrs['clientTemplateId'] = client_template_id
  Iterable.request(conf, '/templates/email/upsert').post(attrs)
end