Published — v. 12
WS_MailUpSend.GetTemplates
Â
Returns a list of available templates
Method parameters
- string GetTemplates(string accessKey, intlistID)
- accessKey: access key obtained using the LoginFromId method
- listID: ID of the list within which the newsletter has to be created. Lists and corresponding IDs can be obtained calling the GetLists Method
If error code=0, the message will contain a list of available templates.
SOAP Examples
SOAP Response
<GetTemplatesResult> Â Â Â <errorCode>0</errorCode> Â Â Â Â <errorDescription></errorDescription> Â Â Â Â <list> Â Â Â Â Â Â Â <listID>1</listID> Â Â Â Â Â Â Â Â <listName>DEMO</listName> Â Â Â Â Â Â Â Â <templates> Â Â Â Â Â Â Â Â Â Â Â <template> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â <templateID>2976</templateID> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â <templateSubject>Blu banner 6 sezioni vert.</templateSubject> Â Â Â Â Â Â Â Â Â Â Â Â Â Â <templateLink>Link to preview image</templateLink> Â Â Â Â Â Â Â Â Â Â Â </template> Â Â Â Â Â Â Â Â Â Â Â Â <template> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â <templateID>2977</templateID> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â <templateSubject>Rosso unica sezione 3img.</templateSubject> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â <templateLink></templateLink> Â Â Â Â Â Â Â Â Â Â Â Â </template> Â Â Â Â Â Â Â </templates> Â Â Â Â </list> </GetTemplatesResult>
Code Examples
Ruby
# Refer to https://mailup.atlassian.net/wiki/display/mailupapi/MailUp+RubyGem for gem information. require 'mailup' m = MailUp::Send.new('username', 'password') m.get_templates(:listId => 1) # => "<GetTemplatesResult><errorCode>0</errorCode><errorDescription></errorDescription><list><listID>0</listID><listName></listName><templates></templates></list></GetTemplatesResult>"