This section will describe the different functions that can be used by the Interspire Marketer XML API.
|
|
|
- Avis Reynolds
- 10 years ago
- Views:
Transcription
1 Introduction The Interspire Marketer XML API is a remotely accessible service API to allow Interspire Marketer users to run many of the Interspire Marketer API functions using XML requests. The Interspire Marketer XML API makes it possible to programmatically update and use your system without needing to physically access it. As XML is a general purpose markup language you can use it to communicate between your Java based applications to Interspire Marketer s PHP application base. For example you could set your system up to automatically update contact lists, create and send campaigns, gather statistics and many other functions. Requirements To make use of the Interspire Marketer XML API you will need to be running PHP or higher. This document is designed to explain the purpose of these functions and to provide examples of their use. Submitting a Request An XML POST request with the details for the license to be generated should be sent to the XML Path that you can find in the User Accounts -> Edit User section of Interspire Marketer under the User Permissions tab. Make sure that you have Enable the XML API checked and saved. The XML Path will look similar to the following: The username and usertoken mentioned in the following examples can be found in this same section under the title of XML Username and XML Token respectively. Possible Requests This section will describe the different functions that can be used by the Interspire Marketer XML API. Add Subscriber to a List The XML document structure for Adding a subscriber and associated custom details request is as follows:/ username The user name used to login to the Interspire Marketer. (Required)
2 requesttype The name of the API file in question. (Required) requestmethod The name of the function being called. (Required) address The address of the contact being added. (Required) mailinglistid The list that the contact is located within. (Required) confirmed Sets the confirmation status of the subscriber to confirmed or not (yes or y or true or 1) (Not required, default to unconfirmed) format The format of the campaigns that this contact prefers to receive (html or h or text or t) (defaults to text) customfields item fieldid The id of the custom field being added. value The value to be added to this custom field. Successful Response Upon submission of a valid add subscriber to list submission a contact will be added to the contact list and the contacts id number returned. status The value of the status field will be SUCCESS for a successful response. data The contacts ID number. The following code sample performs an insertion of the user @domain.com into the mailing list with ID 1, status set to confirmed, format set to html and with a custom field set to John Smith. 01. <xmlrequest> 03. <usertoken>d467e49b ebdab1ea4e046746de7d0ea</usertoken> 04. <requesttype>subscribers</requesttype> 05. <requestmethod>addsubscribertolist</requestmethod> 06. <details> 07. < address> @domain.com</ address> 08. <mailinglist>1</mailinglist> 09. <format>html</format> 10. <confirmed>yes</confirmed> 11. <customfields> 12. <item> 13. <fieldid>1</fieldid> 14. <value>john Smith</value> 15. </item> 16. </customfields> 17. </details> 18. </xmlrequest> 02. $xml = '<xmlrequest> 03. <username>admin</username> 04. <usertoken>d467e49b ebdab1ea4e046746de7d0ea</usertoken> 05. <requesttype>subscribers</requesttype>
3 06. <requestmethod>addsubscribertolist</requestmethod> 07. <details> <mailinglist>1</mailinglist> 10. <format>html</format> 11. <confirmed>yes</confirmed> 12. <customfields> 13. <item> 14. <fieldid>1</fieldid> 15. <value>john Smith</value> 16. </item> 17. </customfields> 18. </details> 19. </xmlrequest> 20. '; $ch = curl_init(' 23. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 24. curl_setopt($ch, CURLOPT_POST, 1); 25. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml); 26. $result 27. if($result === false) { 28. echo "Error performing request"; 29. } 30. else { 31. $xml_doc = simplexml_load_string($result); 32. echo 'Status is ', $xml_doc->status, '<br/>'; 33. if ($xml_doc->status == 'SUCCESS') { 34. echo 'Data is ', $xml_doc->data, '<br/>'; 35. } else { 36. echo 'Error is ', $xml_doc->errormessage, '<br/>'; 37. } 38. } ?> Broken Response This example will demonstrate an error message that is returned when a bad request is made. Notice that the details tag in the example is not closed and no listid is sent for the function to use. The XML document structure for this example is as follows: username The user name used to login to the Interspire Marketer. (Required) requesttype The name of the API file in question. (Required) requestmethod The name of the function being called. (Required) Unsuccessful Response
4 Upon submission of an erroneous response due to a missing field, or an invalid value the request will fail. A status message will be returned via XML as to why. In this example you will be presented with the error message: The XML you provided is not valid. Please check your xml document and try again. status The value of the status field will be ERROR. errormessage A textual message explaining why the request failed. The following code sample will attempt to post a request to the Get Lists function. 01. <xmlrequest> 03. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken> 04. <requesttype>lists</requesttype> 05. <requestmethod>getlists</requestmethod> 06. </details> 07. </xmlrequest> 02. $xml = '<xmlrequest> 03. <username>admin</username> 04. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken> 05. <requesttype>lists</requesttype> 06. <requestmethod>getlists</requestmethod> 07. </details> 08. </xmlrequest>'; $ch = curl_init(' 11. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 12. curl_setopt($ch, CURLOPT_POST, 1); 13. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml); 14. $result 15. if($result === false) { 16. echo "Error performing request"; 17. } 18. else { 19. $xml_doc = simplexml_load_string($result); 20. echo 'status is ', $xml_doc->status, '<br/>'; 21. if ($xml_doc->status == 'SUCCESS') { 22. print_r($result); 23. } else { 24. echo 'Error is ', $xml_doc->errormessage, '<br/>'; 25. } 26. }?>
5 Check Token Works This example will check to make sure that the token that you are using is a valid token. Notice that the details tag in the example is still included even though there are no details needed. username The user name used to login to the Interspire Marketer. (Required) requesttype The name of the API file in question. (Required) requestmethod The name of the function being called. (Required) Successful Response Upon submission of a valid check token request the XML API will return true. status The value of the status field will be SUCCESS for a successful response. data This will return 1 for a successful authorization. Unsuccessful Response Upon submission of an erroneous response due to a missing field, or an invalid value, the Check Token will fail. A status message will be returned via XML as to why. In this example you will be presented with the error message: Invalid details status The value of the status field will be ERROR. errormessage A textual message explaining why the request failed. The following code sample performs an authorization check on the usertoken to make sure that it is a valid token. 01. <xmlrequest> 03. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken> 04. <requesttype>authentication</requesttype> 05. <requestmethod>xmlapitest</requestmethod> 06. <details> 07. </details> 08. </xmlrequest> 02. $xml = '<xmlrequest> 03. <username>admin</username> 04. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken> 05. <requesttype>authentication</requesttype> 06. <requestmethod>xmlapitest</requestmethod> 07. <details> 08. </details> 09. </xmlrequest>';
6 $ch = curl_init(' Marketer/xml.php'); 12. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 13. curl_setopt($ch, CURLOPT_POST, 1); 14. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml); 15. $result 16. if($result === false) { 17. echo "Error performing request"; 18. } 19. else { 20. $xml_doc = simplexml_load_string($result); 21. echo 'status is ', $xml_doc->status, '<br/>'; 22. if ($xml_doc->status == 'SUCCESS') { 23. print_r($result); 24. } else { 25. echo 'Error is ', $xml_doc->errormessage, '<br/>'; 26. } 27. } 28.?> Delete Subscriber This example will delete a contact from your contact list. username The user name used to login to the Interspire Marketer. (Required) requesttype The name of the API file in question. (Required) requestmethod The name of the function being called. (Required) list The ID of the Contact List that you are wishing to search (Required) address The address of the contact that you are attempting to locate (Required) Successful Response Upon submission of a valid delete subscriber request the XML API will return a status of successful. status The value of the status field will be SUCCESS for a successful response. data item - the count of subscribers removed correctly. Unsuccessful Response Upon submission of an erroneous response due to a missing field, or an invalid value, the Delete Subscriber will fail. A status message will be returned via XML as to why. status The value of the status field will be ERROR. errormessage A textual message explaining why the request failed. The following code sample will delete the address listed from the contact list of this ID.
7 01. <xmlrequest> 03. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken> 04. <requesttype>subscribers</requesttype> 05. <requestmethod>deletesubscriber</requestmethod> 06. <details> <list>1</list> 09. </details> 10. </xmlrequest> 02. $xml = '<xmlrequest> 03. <username>admin</username> 04. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken> 05. <requesttype>subscribers</requesttype> 06. <requestmethod>deletesubscriber</requestmethod> 07. <details> 08. < address> @domain.com</ address> 09. <list>1</list> 10. </details> 11. </xmlrequest>'; $ch = curl_init(' 14. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 15. curl_setopt($ch, CURLOPT_POST, 1); 16. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml); 17. $result 18. if($result === false) { 19. echo "Error performing request"; 20. } 21. else { 22. $xml_doc = simplexml_load_string($result); 23. echo 'status is ', $xml_doc->status, '<br/>'; 24. if ($xml_doc->status == 'SUCCESS') { 25. print_r($result); 26. } else { 27. echo 'Error is ', $xml_doc->errormessage, '<br/>'; 28. } 29. } 30.?> Get Custom Field Data The XML document structure for retrieving a contact lists custom field data is as follows:
8 username The user name used to login to the Interspire Marketer. (Required) requesttype The name of the API file in question. (Required) equestmethod The name of the function being called. (Required) listids The ID s of the contact list that the custom field data is being requested. (Required) Successful Response Upon submission of a valid Get Custom Field Data submission the custom field data found will be returned in formatted XML. status The value of the status field will be SUCCESS for a successful response. data item fieldid The custom fields ID number. name The name of the custom field. fieldtype the type of field (text, number etc.). defaultvalue If you set a default value it will appear here. required If this field is required to be filled in (1 or 0). fieldsettings Serialized version of the custom fields settings Unsuccessful Response Upon submission of an erroneous response due to a missing field, or an invalid value the Get Custom Filed Data will fail. A status message will be returned via XML as to why. status The value of the status field will be ERROR. errormessage A textual message explaining why the request failed. The following code sample will draw any information found on the custom fields for the list with the ID of <xmlrequest> 03. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken> 04. <requesttype>lists</requesttype> 05. <requestmethod>getcustomfields</requestmethod> 06. <details> 07. <listids> </listids> 10. </details> 11. </xmlrequest> 02. $xml = '<xmlrequest> 03. <username>admin</username> 04. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken>
9 05. <requesttype>lists</requesttype> 06. <requestmethod>getcustomfields</requestmethod> 07. <details> 08. <listids> </listids> 11. </details> 12. </xmlrequest> 13. '; $ch = curl_init(' 16. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 17. curl_setopt($ch, CURLOPT_POST, 1); 18. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml); 19. $result 20. if($result === false) { 21. echo "Error performing request"; 22. } 23. else { 24. $xml_doc = simplexml_load_string($result); 25. echo 'status is ', $xml_doc->status, '<br/>'; 26. if ($xml_doc->status == 'SUCCESS') { 27. print_r($result); 28. } else { 29. echo 'Error is ', $xml_doc->errormessage, '<br/>'; 30. } 31. } 32.?> Get Lists This example will retrieve a list of all the Contact Lists that are located in Interspire Marketer and return formatted XML with the data found. Notice that the details tag in the example is still included even though there are no details needed. username The user name used to login to the Interspire Marketer. (Required) requesttype The name of the API file in question. (Required) requestmethod The name of the function being called. (Required) Successful Response Upon submission of a valid get lists request the XML API will return any data found on the Interspire Marketer Contact Lists will be returned in formatted XML. status The value of the status field will be SUCCESS for a successful response. data item listid The id of the list.
10 name The name of the list. subscribecount A count of how many subscribed contacts. unsubscribecount A count of how many unsubscribed contacts. autorespondercount A count of how many autoresponders are linked to the Contact List. Unsuccessful Response Upon submission of an erroneous response due to a missing field, or an invalid value, the Get Lists will fail. A status message will be returned via XML as to why. In this example you will be presented with the error message: Invalid details status The value of the status field will be ERROR. errormessage A textual message explaining why the request failed. The following code sample performs a request to return all the Contact Lists located within Interspire Marketer. 01. <xmlrequest> 03. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken> 04. <requesttype>user</requesttype> 05. <requestmethod>getlists</requestmethod> 06. <details> 07. </details> 08. </xmlrequest> 02. $xml = '<xmlrequest> 03. <username>admin</username> 04. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken> 05. <requesttype>user</requesttype> 06. <requestmethod>getlists</requestmethod> 07. <details> 08. </details> 09. </xmlrequest>'; $ch = curl_init(' 12. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 13. curl_setopt($ch, CURLOPT_POST, 1); 14. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml); 15. $result 16. if($result === false) { 17. echo "Error performing request"; 18. } 19. else { 20. $xml_doc = simplexml_load_string($result); 21. echo 'status is ', $xml_doc->status, '<br/>';
11 22. if ($xml_doc->status == 'SUCCESS') { 23. print_r($result); 24. } else { 25. echo 'Error is ', $xml_doc->errormessage, '<br/>'; 26. } 27. } 28.?> Get Subscribers This example will retrieve a count of the amount of Contacts on the list in question as well as a list of all the Contacts that are located in that list and return formatted XML with the data found. username The user name used to login to the Interspire Marketer. (Required) requesttype The name of the API file in question. (Required) requestmethod The name of the function being called. (Required) searchinfo List The ID of the Contact List that you are wishing to search (Required) The address of the contact that you are attempting to locate (Required) Successful Response Upon submission of a valid get subscribers request the XML API will return a count of the amount of Contacts on the list in question along with a list of those contact addresses in formatted XML. status The value of the status field will be SUCCESS for a successful response. data count A count of the amount of subscribers. subscriberlist A list of the subscribers addresses. Unsuccessful Response Upon submission of an erroneous response due to a missing field, or an invalid value, the Get Subscribers will fail. A status message will be returned via XML as to why. status The value of the status field will be ERROR. errormessage A textual message explaining why the request failed. The following code sample performs a check on the Contact List with ID 1 for all addresses that contain the 01. <xmlrequest> 03. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken> 04. <requesttype>subscribers</requesttype> 05. <requestmethod>getsubscribers</requestmethod> 06. <details>
12 07. <searchinfo> 08. <List>1</List> </searchinfo> 11. </details> 12. </xmlrequest> 02. $xml = '<xmlrequest> 03. <username>admin</username> 04. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken> 05. <requesttype>subscribers</requesttype> 06. <requestmethod>getsubscribers</requestmethod> 07. <details> 08. <searchinfo> 09. <List>1</List> 10. < >@yourdomain.com</ > 11. </searchinfo> 12. </details> 13. </xmlrequest>'; $ch = curl_init(' 16. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 17. curl_setopt($ch, CURLOPT_POST, 1); 18. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml); 19. $result 20. if($result === false) { 21. echo "Error performing request"; 22. } 23. else { 24. $xml_doc = simplexml_load_string($result); 25. echo 'status is ', $xml_doc->status, '<br/>'; 26. if ($xml_doc->status == 'SUCCESS') { 27. print_r($result); 28. } else { 29. echo 'Error is ', $xml_doc->errormessage, '<br/>'; 30. } 31. } 32.?> Is Contact on List This example will check to see if a particular Contact is located on a particular Contact List. username The user name used to login to the Interspire Marketer. (Required)
13 requesttype The name of the API file in question. (Required) requestmethod The name of the function being called. (Required) The address of the Contact you are searching for (Required) List The ID of the Contact List you are wanting to search (Required) Successful Response Upon submission of a valid is contact on list request the XML API will return true if it locates the contact and will return nothing if not. status The value of the status field will be SUCCESS for a successful response. data Will return 1 if contact is located. Unsuccessful Response Upon submission of an erroneous response due to a missing field, or an invalid value, the Is Contact on List will fail. A status message will be returned via XML as to why. response status The value of the status field will be ERROR. errormessage A textual message explaining why the request failed. The following code sample performs a check on a contact list to see if a particular contact is listed on it. 01. <xmlrequest> 03. <usertoken>78701d1ba2588ea1991f44299b c6947</usertoken> 04. <requesttype>subscribers</requesttype> 05. <requestmethod>issubscriberonlist</requestmethod> 06. <details> 07. < > @yourdomain.com</ > 08. <List>1</List> 09. </details> 10. </xmlrequest> 02. $xml = ' <requesttype>subscribers</requesttype> 03. <requestmethod>issubscriberonlist</requestmethod> 04. <details> 05. < > @yourdomain.com</ > 06. <List>1</List> 07. </details> 08. </xmlrequest>'; $ch = curl_init(' 11. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 12. curl_setopt($ch, CURLOPT_POST, 1); 13. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml); 14. $result 15. if($result === false) {
14 16. echo "Error performing request"; 17. } 18. else { 19. $xml_doc = simplexml_load_string($result); 20. echo 'status is ', $xml_doc->status, '<br/>'; 21. if ($xml_doc->status == 'SUCCESS') { 22. print_r($result); 23. } else { 24. echo 'Error is ', $xml_doc->errormessage, '<br/>'; 25. } 26. } 27.?> If you have any questions or problems regarding the Interspire Marketer API please leave a comment below or click here to submit a ticket through our client area.
Interspire Email Marketer Agency Edition XML API
Interspire Email Marketer Agency Edition XML API Table of Contents Introduction...2 Creating a User Account...3 Updating a User Account...4 Available User Settings...5 Available User Permissions...6 A
Getting Started with the icontact API
Getting Started with the icontact API Contents - Introduction -... 2 - URIs, URLs, Resources, and Supported Actions -... 3 Contacts Category... 3 Messages Category... 4 Track Category... 4 GET... 5 POST...
SIM Configuration Guide. February 2015 Version 1 Document Reference: 8127
SIM Configuration Guide February 2015 Version 1 Document Reference: 8127 Contents 1 SIM APN Settings... 3 2 SIM MMS Settings... 3 3 SIM Email Settings... 4 4 SIM SMS Settings... 5 5 SIM SMS Charging...
Technical documentation
Technical documentation HTTP Application Programming Interface SMPP specifications Page 1 Contents 1. Introduction... 3 2. HTTP Application Programming Interface... 4 2.1 Introduction... 4 2.2 Submitting
MAIL1CLICK API - rel 1.35
hqimawhctmslulpnaq//vkauukqmommgqfedthrmvorodqx6oxyvsummkflyntq/ 2vOreTmgl8JsMty6tpoJ5CjkykDGR9mPg79Ggh1BRdSiqSSQR17oudKwi1pJbAmk MFUkoVTtzGEfEAfOV0Pfi1af+ntJawYxOaxmHZvtyG9iojsQjOrA4S+3i4K4lpj4 A/tj7nrDfL47r2cQ83JszWsQVe2CqTLLQz8saXfGoGJILREPFoF/uPS0sg5TyKYJ
INTERSPIRE EMAIL MARKETER
INTERSPIRE EMAIL MARKETER Interspire Pty. Ltd. User s Guide Edition 1.3 April 2009 3 About This User s Guide How to Use This User s Guide This user s guide describes Interspire Email Marketer s Graphical
Barracuda Spam Control System
Barracuda Spam Control System 1. General Information The Barracuda anti-spam server inspects all email coming into campus from the Internet for spam and either delivers the message to your email inbox,
Tableau Server Trusted Authentication
Tableau Server Trusted Authentication When you embed Tableau Server views into webpages, everyone who visits the page must be a licensed user on Tableau Server. When users visit the page they will be prompted
Tableau Server Trusted Authentication
Tableau Server Trusted Authentication When you embed Tableau Server views into webpages, everyone who visits the page must be a licensed user on Tableau Server. When users visit the page they will be prompted
How to create an email template
How to create an email template Templates are created the same way as you would for any other content page for an html or text email. By checking the box next to the Name this Content field on the Create
How do I share a file with a friend or trusted associate?
Sharing Information How do I share a file with a friend or trusted associate? Sharing a file in InformationSAFE is easy. The share utility in InformationSAFE allows you to securely share your information
Email Instructions. Outlook (Windows) Mail (Mac) Webmail Windows Live Mail iphone 4, 4S, 5, 5c, 5s Samsung Galaxy S4 BlackBerry
Email Instructions Outlook (Windows) Mail (Mac) Webmail Windows Live Mail iphone 4, 4S, 5, 5c, 5s Samsung Galaxy S4 BlackBerry ii Table of Contents Table of Contents 1 Mail Account Settings 1 Account Set
Integrating LivePerson with Salesforce
Integrating LivePerson with Salesforce V 9.2 March 2, 2010 Implementation Guide Description Who should use this guide? Duration This guide describes the process of integrating LivePerson and Salesforce
Alkacon Software GmbH
Software GmbH An der Wachsfabrik 13 DE - 50996 Köln (Cologne) Geschäftsführer / CEO Alexander Kandzior Amtsgericht Köln HRB 54613 Tel: +49 (0)2236 3826-0 Fax: +49 (0)2236 3826-20 http://www.alkacon.com
1. Starting the management of a subscribers list with emill
The sending of newsletters is the basis of an efficient email marketing communication for small to large companies. All emill editions include the necessary tools to automate the management of a subscribers
ListHub Broker User Manual
ListHub Broker User Manual Section 1: Free and Paying Customers Login to ListHub Account... 2 Select and Manage Channels... 3 View Listing Inventory... 4 View Property Page... 5 Account Settings: Invite
USER GUIDE for Salesforce
for Salesforce USER GUIDE Contents 3 Introduction to Backupify 5 Quick-start guide 6 Administration 6 Logging in 6 Administrative dashboard 7 General settings 8 Account settings 9 Add services 9 Contact
How to Create a Broker Account
How to Create a Broker Account 1. Once you have created your NY.gov ID and set your password (see the guide, How to Create a NY.gov ID ), return to the Broker tab from the NYSOH home page and select CLICK
DIY Email Manager User Guide. http://www.diy-email-manager.com
User Guide http://www.diy-email-manager.com Contents Introduction... 3 Help Guides and Tutorials... 4 Sending your first email campaign... 4 Adding a Subscription Form to Your Web Site... 14 Collecting
HowTo. Planning table online
HowTo Project: Description: Planning table online Installation Version: 1.0 Date: 04.09.2008 Short description: With this document you will get information how to install the online planning table on your
How To Use Listhub On A Pc Or Macbook
ListHub Broker User Manual Section 1: Free and Paying Customers Login to ListHub Account... 2 Select and Manage Channels... 3 View Channel Scorecard... 4 View Listing Inventory... 5 View Property Page...
SINGLE NUMBER SERVICE - MY SERVICES MANAGEMENT
Service Change Charge...$18 Monthly Service...$3/mo. LOGIN TO MY SERVICES In your web browser type in myservices.gondtc.com. Enter your Username (ten-digit phone number for example ) and Password. Your
Pinpointe User s Guide
Pinpointe User s Guide Edition 2.1 October 2008 About This User s Guide How to Use This User s Guide This user s guide describes Pinpointe s Graphical User Interface (GUI). It shows you how to use each
SimplyCast emarketing Email User Guide
SimplyCast emarketing Email User Guide Email User Guide Page 1 Contents 1. Email Overview... 3 2. Features Overview... 3 3. Email Editor Features... 8 4. How to Create an Email Campaign?... 5 5. Additional
Virtual Communities Operations Manual
Virtual Communities Operations Manual The Chapter Virtual Communities (VC) have been developed to improve communication among chapter leaders and members, to facilitate networking and communication among
DocuSign Connect for Salesforce Guide
Information Guide 1 DocuSign Connect for Salesforce Guide 1 Copyright 2003-2013 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign
The VerticalResponse API Guide
The VerticalResponse API Guide Revision 4, 9/2012 Copyright 2012 VerticalResponse, Inc. Table of Contents 1. Introduction About This Guide Enterprise API vs. Partner API Email Campaign Creation Workflow
IT Email Services page 1 of 10 Spam Filtering. Overview
IT Email Services page 1 of 10 Overview Comcast Spectacor has implemented a system to control unwanted Internet email (spam) from the Internet. Virus emails and some known spam will be filtered automatically.
InTime API - Exempel kod
InTime API - Exempel kod Exempel kod för att anropa Intime HTTP API. Översikt funktioner C# Meddelanden PHP Meddelanden 1 C# - Meddelanden En generell klass för att anropa Intime API som används i samtliga
Email Update Instructions
1 Email Update Instructions Contents Email Client Settings The Basics... 3 Outlook 2013... 4 Outlook 2007... 6 Outlook Express... 7 Windows Mail... 8 Thunderbird 3... 9 Apple Mail... 10 2 Email Client
Salesforce Integration. Installation Manual Release
Salesforce Integration Installation Manual Release Table of Contents Salesforce Integration... Error! Bookmark not defined. 1. Integration with LeadForce1(Manual)... 3 2. Integration with LeadForce1 (Automated
How to pull content from the PMP into Core Publisher
How to pull content from the PMP into Core Publisher Below you will find step-by-step instructions on how to set up pulling or retrieving content from the Public Media Platform, or PMP, and publish it
SpringCM Integration Guide. for Salesforce
SpringCM Integration Guide for Salesforce January 2013 Introduction You are minutes away from fully integrating SpringCM into your Salesforce account. The SpringCM Open Cloud Connector will allow you to
A RESTful Web Service Interface to the ATLAS COOL Database
A RESTful Web Service Interface to the ATLAS COOL Database Shaun Roe CHEP'09 Prague A RESTful Web Service... (Shaun Roe, Atlas) 1 COOL (see talk by A. Valassi, this conference) COOL: A database schema
icontact Email Marketing
icontact Email Marketing User s Guide 2010 StormSource Software, Inc. www.appointment-plus.com 13951 N. Scottsdale Rd., Suite 131, Scottsdale, AZ 85254-3454 480.483.1199 TABLE OF CONTENTS 1. OVERVIEW...
Email Capture and History CCS Service Request for Microsoft SharePoint
Email Capture and History CCS Service Request for Microsoft SharePoint Crow Canyon Systems, Inc. http://www.crowcanyon.com http://www.sharepoint-applications.biz Overview Initial emails from users need
Webhooks are the Key!
Connecting Marketo to Direct Mail Manager with WebHooks Direct Mail Manager s integration with Marketo can be setup using WebHooks and included in any Marketo Campaign. The setup is based on 3 simple steps:
Logging into the control panel
Logging into the control panel Before any changes can be made to your email system, you must first login to the Plesk control panel. To get access to the control panel login screen, enter http://mymail.bam.com.au
AppAssure Software Information Collection Utility: AAInfo
AppAssure Software Information Collection Utility: AAInfo Introduction AppAssure Software understands the value of being able to quickly and easily provide our technical staff valuable system information
Create an Email Campaign. Create & Send Your Newsletter
Create an Email Campaign Create & Send Your Newsletter Free Easy Fast -1- Create an Email Campaign 1 For sending a newsletter or a bulk email, you need to create an Email Campaign, click on the CAMPAIGN
LICENTIA. Nuntius. Magento Email Marketing Extension REVISION: SEPTEMBER 21, 2015 (V1.8.1)
LICENTIA Nuntius Magento Email Marketing Extension REVISION: SEPTEMBER 21, 2015 (V1.8.1) INDEX About the extension... 6 Compatability... 6 How to install... 6 After Instalattion... 6 Integrate in your
Business On Line File Gateway Guide for Customers
Business On Line File Gateway Guide for Customers This document is published by Bank of Ireland, and both it, and its contents, are the property of Bank of Ireland. This document may not be reproduced
SMTPSWITCH MAILER V6 FEATURES
SMTPSWITCH MAILER V6 FEATURES 22 Powerful Features Packed in a Single Email Marketing/Bulk Mailing Program! Easy and Advanced WYSIWYG/HTML Editing SMTPSwitch Mailer has a powerful built-in WYSIWYG editor
DocuSign for SharePoint 2010 1.5.1
Quick Start Guide DocuSign for SharePoint 2010 1.5.1 Published December 22, 2014 Overview DocuSign for SharePoint 2010 allows users to sign or send documents out for signature from a SharePoint library.
HP Project and Portfolio Management Center
HP Project and Portfolio Management Center Software Version: 9.20 RESTful Web Services Guide Document Release Date: February 2013 Software Release Date: February 2013 Legal Notices Warranty The only warranties
AccountView. Single Sign-On Guide
AccountView Single Sign-On Guide 2014 Morningstar. All Rights Reserved. AccountView Version: 1.4 Document Version: 2 Document Issue Date: March 09, 2013 Technical Support: (866) 856-4951 Telephone: (781)
Salesforce Installation and Customization Guide for Professional Edition Users
Salesforce Installation and Customization Guide for Professional Edition Users Note: You must have an active Response Wise account. The Response Wise Salesforce App will not work with trial accounts. Please
Remedy ITSM Service Request Management Quick Start Guide
Remedy ITSM Service Request Management Quick Start Guide Table of Contents 1.0 Getting Started With Remedy s Service Request Management. 3 2.0 Submitting a Service Request.7 3.0 Updating a Service Request
Chimpegration for The Raiser s Edge
Chimpegration for The Raiser s Edge [email protected] www.zeidman.info UK: 020 3637 0080 US: (646) 570 1131 Table of Contents Overview... 4 Chimpegration Versions... 4 Chimpegration Free... 4 Chimpegration
5.2.3 Thank you message 5.3 - Bounce email settings Step 6: Subscribers 6.1. Creating subscriber lists 6.2. Add subscribers 6.2.1 Manual add 6.2.
Step by step guide Step 1: Purchasing an RSMail! membership Step 2: Download RSMail! 2.1. Download the component 2.2. Download RSMail! language files Step 3: Installing RSMail! 3.1: Installing the component
Email Marketing Features
Email Marketing Features JPC s Email Marketer includes everything you need to create, send and track professional HTML emails. It is fullyfeatured email marketing software which has been developed by marketing
Get Started with LeadSquared Guide for Marketing Users. Complete lead to revenue platform
Get Started with LeadSquared Guide for Marketing Users Complete lead to revenue platform Bookmark LeadSquared Login Page Login to LeadSquared at https://run.leadsquared.com (Bookmark the URL) LeadSquared
Selling Digital Goods Online
PayLoadz.com Selling Digital Goods Online How to use the PayLoadz and PayPal services to sell digital goods on your web site Updated: 02/12/2006 TABLE OF CONTENTS INTRODUCTION...3 HOW IT WORKS...3 GETTING
Getting Started (direct link to Lighthouse Community http://tinyurl.com/q5dg5wp)
Getting Started (direct link to Lighthouse Community http://tinyurl.com/q5dg5wp) If you re already a member, click to login and see members only content. Use the same login ID that you use to register
KeyAdvantage System DMS Integration. Software User Manual
KeyAdvantage System DMS Integration Software User Manual ii Copyright Disclaimer Trademarks and patents Intended use EMC Directive Regulatory 2013 United Technologies Corporation. All rights reserved.
XHTML Forms. Form syntax. Selection widgets. Submission method. Submission action. Radio buttons
XHTML Forms Web forms, much like the analogous paper forms, allow the user to provide input. This input is typically sent to a server for processing. Forms can be used to submit data (e.g., placing an
SEOSHOP - MAILCHIMP APP
SEOSHOP - MAILCHIMP APP V1.0 (BETA) INSTALLATION & USER MANUAL V1.0 AUG. 14, 2013 DEVELOPED BY TAUROS MEDIA NEDERLAND B.V. [email protected] WWW.TAUROSMEDIA.COM USER MANUAL SEOSHOP-MAILCHIMP APP V1.0
Example for Using the PrestaShop Web Service : CRUD
Example for Using the PrestaShop Web Service : CRUD This tutorial shows you how to use the PrestaShop web service with PHP library by creating a "CRUD". Prerequisites: - PrestaShop 1.4 installed on a server
Add / Update Ticket API using POST XML
Add / Update Ticket API using POST XML November 2010 ZebraCRM system allows adding and updating system tickets by external sites. The API accepts ticket data in XML format as specified. Indication of success
Email Update Instructions
1 Email Update Instructions Contents Email Client Settings The Basics... 3 Outlook 2013... 4 Outlook 2007... 6 Outlook Express... 8 Windows Mail... 9 Thunderbird 3... 10 Apple Mail... 11 2 Email Client
Fax and Email. Fax & Email Monitor Application
22 You can fax and email statements and invoices directly from FTD Mercury. Additionally, you can email delivery confirmations. The FTD Document Center allows you create custom email templates you can
Email Marketing Features
Email Marketing Features intouch Email Marketer is a true all-in-one communications platform and includes everything you need to create, send and track professional HTML emails, autoresponders, surveys,
How to Create and Send Newsletter Using G-Lock EasyMail
How to Create and Send Newsletter Using G-Lock EasyMail Beginner s Guide 1 Page Table of Contents 1. Create E-Mail Account 3 2. Create Contact Group. 5 3. Import Contacts from External Database. 6 4. Compose
Bulk E-mailing With gravitymail
Bulk E-mailing With gravitymail Preamble: Information & Technology Services blocks all outgoing e-mail with 40 or more recipients. This is being done so Humber does not get blacklisted as an Internet spammer.
Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions
Bitrix Site Manager 4.0 Quick Start Guide to Newsletters and Subscriptions Contents PREFACE...3 CONFIGURING THE MODULE...4 SETTING UP FOR MANUAL SENDING E-MAIL MESSAGES...6 Creating a newsletter...6 Providing
Web Services Tutorial
Web Services Tutorial Web Services Tutorial http://bit.ly/oaxvdy (while you re waiting, download the files!) 2 About Me Lorna Jane Mitchell PHP Consultant/Developer Author API Specialist Project Lead on
Security API Cookbook
Sitecore CMS 6 Security API Cookbook Rev: 2010-08-12 Sitecore CMS 6 Security API Cookbook A Conceptual Overview for CMS Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 User, Domain,
MXSAVE XMLRPC Web Service Guide. Last Revision: 6/14/2012
MXSAVE XMLRPC Web Service Guide Last Revision: 6/14/2012 Table of Contents Introduction! 4 Web Service Minimum Requirements! 4 Developer Support! 5 Submitting Transactions! 6 Clients! 7 Adding Clients!
Email - Spam Spam Email Firewall How Does the Spam Firewall Work? Getting Started username Create New Password
Email - Spam Spam Email Firewall ODU s Information Services has implemented a Spam Firewall to help you manage spam e-mail from Internet senders. Generally defined, spam e-mail is an unsolicited mailing,
CHARGE Anywhere Universal Shopping Cart
CHARGE Anywhere Universal Shopping Cart Version: v1.0.1 Prepared for: CHARGE Anywhere 4041B Hadley Rd South Plainfield, NJ 07080 Phone: + 1 (800)211-1256 Fax: + 1 (732) 417-4448 I. Introduction... 3 II.
Barracuda Spam Firewall Users Guide. Greeting Message Obtaining a new password Summary report Quarantine Inbox Preferences
Barracuda Spam Firewall Users Guide Greeting Message Obtaining a new password Summary report Quarantine Inbox Preferences Greeting Message The first time the Barracuda Spam Firewall quarantines an email
Technical Specification ideal
Technical Specification ideal (IDE.001) Author(s): Michel Westerink (MW) Version history: V1.0 MW (Copy from targetpay.com) 07/01/13 V1.0 MKh New error codes 20/02/14 V1.1 TZ New IP whitelisted 29/08/14
AJ Shopping Cart. Administration Manual
AJ Shopping Cart Administration Manual AJ Square Consultancy Services (p) Ltd., The Lord's Garden, #1-12, Vilacheri Main Road, Vilacheri, Madurai-625 006.TN.INDIA, Ph:+91-452-2485553, 2485554. Fax : 2484600
Mass Emailing Techniques
Mass Emailing Techniques... This is not about spam! Pascal Robert MacTI Why? Most of us have to send mass email (newsletter, special offers, reminders, etc.) Sending emails can take some time Have to avoid
ACR Triad Web Client. User s Guide. Version 2.5. 20 October 2008. American College of Radiology 2007 All rights reserved.
ACR Triad Web Client Version 2.5 20 October 2008 User s Guide American College of Radiology 2007 All rights reserved. CONTENTS ABOUT TRIAD...3 USER INTERFACE...4 LOGIN...4 REGISTER REQUEST...5 PASSWORD
User manual for the visitors of Interreg Danube Programme website
User manual for the visitors of Interreg Danube Programme website Table of contents National contact points... 2 Newsletter subscription... 2 Subscribe... 2 Unsubscribe... 2 Forum... 2 Approved projects...
SpringCM Troubleshooting Guide for Salesforce
SpringCM Troubleshooting Guide for Salesforce July 2013 TABLE OF CONTENTS FAQS:... 3 WHY DID I NOT RECEIVE A SPRINGCM ACTIVATION EMAIL?... 3 WHY DON T MY SALESFORCE USERS HAVE ACCESS TO SPRINGCM?... 3
Pervasive Data Integrator. Oracle CRM On Demand Connector Guide
Pervasive Data Integrator Oracle CRM On Demand Connector Guide Pervasive Software Inc. 12365 Riata Trace Parkway Building B Austin, Texas 78727 USA Telephone: (512) 231-6000 or (800) 287-4383 Fax: (512)
Integrations. Help Documentation
Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Integrations WHMCS SmarterTrack Provisioning Module Package
WHMCS LUXCLOUD MODULE
èè WHMCS LUXCLOUD MODULE Update: 02.02.2015 Version 2.0 This information is only valid for partners who use the WHMCS module (v2.0 and higher). 1.1 General overview 1.2 Installing the plugin Go to your
The Beginner s Guide to G-Lock WPNewsman Plugin for WordPress: Installation and Configuration
The Beginner s Guide to G-Lock WPNewsman Plugin for WordPress: Installation and Configuration Summary G-Lock WPNewsman is a nice WordPress plugin for collecting subscribers using the confirmed opt-in method
Brainshark/Salesforce.com Integration Installation Procedures
Page1 Brainshark/Salesforce.com Integration Installation Procedures The Brainshark/Salesforce integration allows Salesforce users to send emails containing links to Brainshark presentations from a contact
Tracking E-mail Campaigns with G-Lock Analytics
User Guide Tracking E-mail Campaigns with G-Lock Analytics Copyright 2009 G-Lock Software. All Rights Reserved. Table of Contents Introduction... 3 Creating User Account on G-Lock Analytics. 4 Downloading
Merak Outlook Connector User Guide
IceWarp Server Merak Outlook Connector User Guide Version 9.0 Printed on 21 August, 2007 i Contents Introduction 1 Installation 2 Pre-requisites... 2 Running the install... 2 Add Account Wizard... 6 Finalizing
Integration Overview. Web Services and Single Sign On
Integration Overview Web Services and Single Sign On Table of Contents Overview...3 Quick Start 1-2-3...4 Single Sign-On...6 Background... 6 Setup... 6 Programming SSO... 7 Web Services API...8 What is
Creating a Marketing Campaign
Chapter 14 Creating a Marketing Campaign FrontDesk v4.1.25 Customer Marketing and Promotion 216 217 Marketing and Promotion Tasks Menu 218 219 Add a Marketing Document 219 220 Sample Email Merge Template
ExactTarget Dynamics CRM Integration
ExactTarget Dynamics CRM Integration Product Specifications October 2012 Scribe and ExactTarget Page 1 CONTENTS Purpose... 3 Functionality... 4 Assumptions... 5 Use Cases... 6 1. New Leads from CRM to
Using Mass Email in LeashTime: Tips and Caveats
Using Mass Email in LeashTime: Tips and Caveats LeashTime offers a mechanism for sending mass emails to your clients or sitters. The mechanism helps you filter the list of clients or sitters to receive
DPH TOKEN SELF SERVICE SITE INSTRUCTIONS:
DPH TOKEN SELF SERVICE SITE INSTRUCTIONS: The purpose of this document is to provide users with assistance on resolving connection issues with Department of Public Health (DPH) Entrust tokens. These instructions
Contactegration for The Raiser s Edge
Contactegration for The Raiser s Edge [email protected] www.zeidman.info UK: 020 3637 0080 US: (646) 570 1131 Table of Contents Overview... 3 Installation... 3 Set up... 4 Activation... 5 Connecting
MSDG Services Integration Document Draft Ver 1.2
Table of contents Page 1 of 17 Table of Contents 2 Push SMS Integration 1. 1.1 Overview HTTP API lets departments send across SMS messages using HTTP URL interface. The API supports SMS push (Single SMS
Composite.Community.Newsletter - User Guide
Composite.Community.Newsletter - User Guide Composite 2015-11-09 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 4 1.1 Who Should Read This
