Getting Started with the icontact API

Size: px
Start display at page:

Download "Getting Started with the icontact API"

Transcription

1 Getting Started with the icontact API Contents - Introduction URIs, URLs, Resources, and Supported Actions Contacts Category... 3 Messages Category... 4 Track Category... 4 GET... 5 POST... 5 PUT... 5 DELETE Creating a Sandbox Account Register and Enable Your Application API Headers Account ID & Client Folder ID Some Common Examples Create a List Create a Contact Subscribe a Contact Create a Message Support for the icontact API P age

2 - Introduction - The purpose of this document is to give a step by step process on how to get started with using the icontact API as well as give some basic examples of calls you can make to it for various information. It should be stated ahead of time that to use the API, we recommend strong working knowledge of a web programming language such as PHP. icontact does not provide project management services at this time, so many of our API users will find it necessary to hire a developer to work on their API project. First we need to start with some basic information that will help with understanding what the API is, what can be done with it, and the policies concerning it. - API stands for Application Programming Interface and is defined as a particular set of rules ( code ) and specifications that software programs can follow to communicate with each other. In this case the software programs in question are the one(s) you are developing/using and the icontact application. - Communication to and from the icontact API can be in only two different programming languages XML (Extensible Markup Language) and JSON (JavaScript Object Notation). - The API is most commonly used for Contact, List and Subscription Management purposes (adding, deleting, and modifying Contacts). However, it can also be used to create messages and view message statistics. - Sandbox accounts can be opened for testing your application without affecting any real data in your production account. The Sandbox is merely a testing environment. NOTE: Sandbox accounts are only available to paid customers even though the API itself is available to all customers, Paid, Trial, and Free. - To use the icontact API, you must adhere to icontact s Terms and Conditions 1. In addition, you must also adhere to the icontact API s request limiting and throttling limits (see next note). Failure to adhere to these conditions may cause icontact to revoke your AppId or to disable your icontact account. - The request limit for the icontact API is 75,000 requests in a 24 hour period, with a maximum of 10,000 requests per hour. If you exceed the 75,000 requests per 24 hour period, you should wait 1 minute before making another API request. If you exceed 10,000 requests per hour, you should wait at least 1 second before making another API request. NOTE: If you exceed the request limit, we will respond with a 503 error code for any additional requests P age

3 - URIs, URLs, Resources, and Supported Actions - When the acronyms URI or URL are used in reference to the API they are referring to the web addresses that requests (or calls ) are sent to. Once all of the necessary access information is gathered (see steps below) you will use the appropriate URI/URL for the action you desire to take through the API. The URIs/URLs vary based on which Resource you are making a call to. There are seventeen Resources that fall under three main categories that you can make calls to: Contacts Category 1) Client Folders Resource ( - The client folders resource allows access to information in the client folders within an account. Every icontact account contains at least one client folder, however some accounts contain multiple client folders. The client folder contains all information regarding a specific client, including messages, lists, sends, segments, subscribers, etc. 2) Contacts Resource ( - Use the contacts resource to create and view contacts, edit information about individual contacts, and edit information about multiple contacts. 3) Custom Fields Resource ( - Custom fields allow an icontact user to store contact information other than the standard fields provided by the system. For example, you might include a region custom field that describes the geographical region in which a contact resides. 4) Subscriptions Resource ( - Subscriptions map the relationship between a contact and a list. 5) Uploads Resource ( - Use this resource to upload a list of contacts that exist in a.csv or.xls file. 6) Segments Resource ( - Segments define a saved search of contacts on a given list, allowing you to send to just the subscribers in that saved search. Use the segments resource to create, edit, and delete segments. 7) Segment Criteria Resource ( - Get and modify criteria for segments. 8) Lists Resource ( - Use the lists resource to modify subscriber lists. 3 P age

4 Messages Category 1) Sends Resource ( - The sends resource defines an event: the date and time on which an is sent through icontact. This includes s that are scheduled to be sent in the future. 2) Campaigns Resource ( - Campaigns allow you to modify users sending profile and the address to their blogs and archives. 3) Messages Resource ( - A message is any marketing communication created within icontact. Track Category 1) Message Bounces Resource ( - Gather tracking data on how often specific s are bouncing. 2) Message Clicks Resource ( - Use the message clicks resource to gather data on how many usersclicked the links in your s, and also who clicked the links. 3) Message Opens Resource ( - This resource tracks the number of times an was opened by subscribers. 4) Statistics Resource ( - Use the statistics resource to gather data on specific s, including: bounces, clicks, forwards, delivered, unsubscribed, opens, comments, complaints 5) Unsubscribes Resource ( - Provides data on who unsubscribed from a list. 6) Contact History Resource ( - Use this resource to access data contained on the Contact History pages. As mentioned above there are URIs/URLs associated with each of the seventeen Resources above. There are only four different actions that can be performed in the icontact API, though. Not all actions can be performed in all seventeen Resources 2. The four supported actions (also known as requests or calls ) are: 2 For information on which actions each Resource supports click on the link next to the Resource Name above to be taken to those pages in the icontact Developer Portal. 4 P age

5 GET Used primarily to retrieve general or specific information from your account using one of the supported Resources. Examples included retrieving lists of contacts, specific contacts, messages, subscriptions, etc. POST Used primarily to add new data to your account. Examples include adding new contacts, modifying subscriptions, creating new messages, and initiating message sends. PUT Used primarily to overwrite existing data. Examples include moving contacts from one list to another list or uploading a list of contacts. DELETE Used to delete information from the account. Now that you are familiar with the basics of understanding and using the icontact API we can move on to how to start using it. All of the screenshots below are going to be either of the icontact application and/or website itself, or of an application called RESTClient, which is available from 3. The responses received by the icontact API are displayed in XML and therefore may appear differently if you are using a program that uses JSON. 3 (The version used is under the Downloads section to the left P age

6 - Creating a Sandbox Account - As mentioned in the Introduction above, Sandbox accounts are only available to paid customers. Trial and Free Edition customers are free to use the API itself but cannot open a Sandbox account. If you are not a paid customer you can skip the steps in this section and move on to the Register Your Application section below. Follow these steps to create an icontact Sandbox account: (1) Visit the icontact Developer Portal at and click on the Sandbox Login link: 6 P age

7 (2) On the following page click on the link that says If you need a Sandbox login, Sign Up : (3) On the following page enter in your icontact Username and Password for your paid account into the spaces provided. You will also need to read and agree to icontact's Sandbox Terms of Service 4. When you have finished entering this information click the Proceed to the next step button: P age

8 (4) On the following page you will enter in your desired Sandbox login information. This includes a Sandbox Username, Password, and Magic Recipient Address 5. When you have finished entering this information click the Sign Up button : You have successfully set up your icontact Sandbox account! Proceed to the next section to acquire the necessary information to access the icontact API. - Register and Enable Your Application - Each application that attempts to access the icontact API needs to have a unique identifier known as the Application ID or Application Key. To acquire this Application ID you must register your application with icontact. Use the following steps to register your application: (1) Visit (This is for your main Production account. For a Sandbox account visit instead. The subsequent steps are the same. To retrieve your Application ID at any time after generating it you will visit these same links.) 5 The Magic Recipient Address is where all broadcast messages sent from the Sandbox account will be sent to no matter how many contacts or which list(s) you choose. 8 P age

9 (2) On the following page enter in your desired Application Name and Description. Both of these are required fields. (NOTE: The Application Name and Description cannot be changed once entered) When you have finished entering that information click the Get App ID button. (NOTE: There can only be one AppId per account): (3) The following page will repeat your Application Name and Description and give you the option to choose between API 2.0 and 1.0 (make sure 2.0 is selected). It also has your 32-character API-AppId under the heading API 2.0 Authentication. Write down this information somewhere and save it for future use: 9 P age

10 (4) After you have written down your application information click on the link that says enable this AppId for your account : (5) Enabling your AppId for your account entails setting up a password that is specific to that AppId. Type your desired password into the space provided and click the Save button. 10 P age

11 You have successfully generated and enabled an Application ID (AppId/Key) for your account! - API Headers - If you have completed all of the steps above you have most of the information you need to start communicating with the icontact API. To initiate a connection with the icontact API you must provide valid headers. The necessary header information is as follows: Accept: [this value can be either text/xml (for XML) or application/json (for JSON)] Content-Type: [this value can be either text/xml (for XML) or application/json (for JSON)] API-Version: [this value can be either 2.0, 2.1, or 2.2] API-AppId: [this value is the 32-Character Application ID you generated and enabled above] API-Username: [this value is your Production account username (or your Sandbox account username if you are making calls to your Sandbox account)] API-Password: [this value is the password you created when enabling your Application ID above not your Production or Sandbox account password] Here is a sample set of header information: Accept: text/xml Content-Type: text/xml API-Version: 2.2 API-AppId: VDRXdzy2IkS35Ma4GVS6I5HGjlfUl88X API-Username: icontactisawesome API-Password: mysupersecurepassword With all of this information you can now initiate a connection with icontact via the API. [IMPORTANT NOTE: If you are attempting to make calls to your Production account and are getting an Invalid Username error make sure to check the case of the characters in your username. When accessing your Production account via the API the API-Username in your headers is case-sensitive. It is not case-sensitive when you are trying to access the Sandbox. If you need to verify the case of your Username send a request to api@icontact.com and API Support will you the accurate information.] - Account ID & Client Folder ID - Using the accurate header information you can now retrieve the last two necessary pieces of information to govern your account via the API. Each account in icontact is assigned its own Account ID. Within each account there can be one or more Client Folders, each of which has their own ID. Standard accounts have one 11 P age

12 Client Folder ID whereas Agency accounts can have multiple IDs. Use the following steps to retrieve your Account and Client Folder IDs: (1) Account ID a. For Sandbox account make a GET call to and the response will contain a tag with your accountid. The response from the RESTClient below is in xml: b. For Production account make a GET call to and the response will contain a tag with your accountid. The only thing that changes is the URI/URL that you make the call to. The response will be formatted the same (except with different information): 12 P age

13 (2) Client Folder ID Using the accountid you can now acquire the clientfolderid: a. For Sandbox account make a GET call to and the response will contain a tag with your clientfolderid. The response from the RESTClient below is in xml: b. For Production account make a GET call to and the response will contain a tag with your clientfolderid. The only thing that changes is the URI/URL that you make the call to. The response will look the same (except with different information): 13 P age

14 Now that you have your accountid and clientfolderid numbers you have the full URI/URL necessary to use all Resources in the icontact API: For Sandbox accounts: For Production accounts: Fill in the {accountid} and {clientfolderid} sections in the URIs/URLs above with the information you retrieved when making the GET calls and you are good to go! - Some Common Examples - The most common uses of the icontact API is to create lists, create new contacts, subscribe those contacts to a list or lists, and create messages. Below are examples of how to do each in both XML and JSON (in blue font). These examples are considered the Body of text passed through the API. Obviously the text contained in each example would need to be modified to match your specific contacts information. For information on what each of the fields mean, click on the name of the corresponding resource above to find the information in the icontact Developer Portal. Create a List XML: <lists> <list> <name>list NAME HERE</name> <description>list DESCRIPTION HERE</description> < owneronchange>1</ owneronchange> <welcomeonmanualadd>1</welcomeonmanualadd> <welcomeonsignupadd>0</welcomeonsignupadd> <welcomemessageid>desired WELCOME MESSAGE ID HERE</welcomeMessageId> </list> </lists> 14 P age JSON: [ { "name":"list NAME HERE", "description":"list DESCRIPTION HERE", " owneronchange":1, "welcomeonmanualadd":1, "welcomeonsignupadd":0, "welcomemessageid":desired WELCOME MESSAGE ID HERE } ]

15 Create a Contact (NOTE: a Subscriptions request is still necessary after creating a contact to add them to a particular list or lists.) XML: <contacts> <contact> < >j.contact@ .com</ > <prefix> </prefix> <firstname>joe</firstname> <lastname>contact</lastname> <suffix></suffix> <street>123 Main St.</street> <city>somewhere</city> <state>ny</state> <postalcode>999999</postalcode> <phone> </phone> <business>icontact</business> <status>normal</status> </contact> </contacts> JSON: [ { " ":"j.contact@ .com", "prefix":"", "firstname":"joe", "lastname":"contact", "suffix":"", "street":"123 Main St.", "city":"somewhere", "state":"ny", "postalcode":99999, "phone": , "business":"icontact", "status":"normal" } ] 15 P age

16 Subscribe a Contact XML: <subscriptions> <subscription> <contactid>contact ID HERE</contactId> <listid>list ID HERE</listId> <status>normal</status> </subscription> </subscriptions> JSON [ { "contactid":contact ID HERE, "listid":list ID HERE, "status":"normal" } ] Create a Message XML: <messages> <message> <campaignid>campaign ID HERE</campaignId> <subject>message SUBJECT HERE</subject> <messagetype>normal</messagetype> <messagename>message NAME HERE</messageName> <htmlbody><![cdata[<p>html CONTENT HERE </p>]]></htmlbody> <textbody>text CONTENT HERE</textBody> </message> </messages> 16 P age JSON: { "messages":[ { "campaignid":campaign ID HERE, "subject":"message SUBJECT HERE", "messagetype":"normal", "messagename":"message NAME HERE", "htmlbody":"html CONTENT HERE", "textbody":"text CONTENT HERE"

17 } ] } - Support for the icontact API - For more information on the icontact API you can visit If you cannot find the answer(s) to your question(s) there you may contact api@icontact.com or call and our trained Technical Specialists will provide you with our award-winning Customer Support. Thank you for choosing icontact for your and Social Marketing Provider, and thank you for using the icontact API! 17 P age

USER GUIDE for Salesforce

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

More information

Salesforce Installation and Customization Guide for Professional Edition Users

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

More information

icontact Email Marketing

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...

More information

Cloud Elements! Marketing Hub Provisioning and Usage Guide!

Cloud Elements! Marketing Hub Provisioning and Usage Guide! Cloud Elements Marketing Hub Provisioning and Usage Guide API Version 2.0 Page 1 Introduction The Cloud Elements Marketing Hub is the first API that unifies marketing automation across the industry s leading

More information

Fairsail REST API: Guide for Developers

Fairsail REST API: Guide for Developers Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,

More information

INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR. User Guide for the RightFax Fax Service. Web Utility

INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR. User Guide for the RightFax Fax Service. Web Utility INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR User Guide for the RightFax Fax Service Web Utility August 2011 CONTENTS 1. Accessing the Web Utility 2. Change Password 3. Web Utility:

More information

Using IBM dashdb With IBM Embeddable Reporting Service

Using IBM dashdb With IBM Embeddable Reporting Service What this tutorial is about In today's mobile age, companies have access to a wealth of data, stored in JSON format. Leading edge companies are making key decision based on that data but the challenge

More information

SYSPRO App Store: Registration Guide

SYSPRO App Store: Registration Guide SYSPRO App Store: Registration Guide SYSPRO App Store Registration Guide 2 Table of Contents What is the SYSPRO App Store?... 3 The SYSPRO App Store URL... 3 Who can use it?... 3 Register as a customer...

More information

Cloud Elements! Events Management BETA! API Version 2.0

Cloud Elements! Events Management BETA! API Version 2.0 Cloud Elements Events Management BETA API Version 2.0 Event Management Version 1.0 Event Management Cloud Elements Event Management provides a uniform mechanism for subscribing to events from Endpoints

More information

Single Sign On (SSO) Implementation Manual. For Connect 5 & MyConnect Sites

Single Sign On (SSO) Implementation Manual. For Connect 5 & MyConnect Sites Single Sign On (SSO) Implementation Manual For Connect 5 & MyConnect Sites Version 6 Release 5.7 September 2013 1 What is Blackboard Connect Single Sign On?... 3 How it Works... 3 Drawbacks to Using Single

More information

Novo Nordisk Secure File Transfer User Guide

Novo Nordisk Secure File Transfer User Guide hehe Novo Nordisk Secure File Transfer User Guide Table of Contents 1. Purpose of this document... 2 2. Getting Access... 2 3. Installing the Upload/Download Wizard (first time only)... 2 4. Uploading

More information

SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide

SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide Email Encryption Customers who are provisioned for SaaS Email Encryption can easily configure their Content Policies

More information

Personal Portfolios on Blackboard

Personal Portfolios on Blackboard Personal Portfolios on Blackboard This handout has four parts: 1. Creating Personal Portfolios p. 2-11 2. Creating Personal Artifacts p. 12-17 3. Sharing Personal Portfolios p. 18-22 4. Downloading Personal

More information

Fax User Guide 07/31/2014 USER GUIDE

Fax User Guide 07/31/2014 USER GUIDE Fax User Guide 07/31/2014 USER GUIDE Contents: Access Fusion Fax Service 3 Search Tab 3 View Tab 5 To E-mail From View Page 5 Send Tab 7 Recipient Info Section 7 Attachments Section 7 Preview Fax Section

More information

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce.

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce. Chapter 41 Configuring Salesforce The following is an overview of how to configure the Salesforce.com application for singlesign on: 1 Prepare Salesforce for single sign-on: This involves the following:

More information

Our Design Genius will walk you through the styling process and help you make your campaigns match your brand s look and feel.

Our Design Genius will walk you through the styling process and help you make your campaigns match your brand s look and feel. Welcome to Welcome to. Getting started is easy this guide will help you make a seamless transition in just a few simple steps. We ll explain how to set up your lists, create beautiful campaigns and view

More information

Click on Login at www.oecd-ilibrary.org and enter the Administrator username and password

Click on Login at www.oecd-ilibrary.org and enter the Administrator username and password REGISTRATION MANAGEMENT OPTIONS PURPOSE This document explains the various pages and options for institutional registrations at OECD ilibrary. The login as administrator enables the management of the registration

More information

MasterPass Service Provider Onboarding & Integration Guide Fileand API-Based Merchant Onboarding Version 6.10

MasterPass Service Provider Onboarding & Integration Guide Fileand API-Based Merchant Onboarding Version 6.10 MasterPass Service Provider Onboarding & Integration Guide Fileand API-Based Merchant Onboarding Version 6.10 7 January 2016 SPBM Summary of Changes, 7 January 2016 Summary of Changes, 7 January 2016 This

More information

IBM Watson Ecosystem. Getting Started Guide

IBM Watson Ecosystem. Getting Started Guide IBM Watson Ecosystem Getting Started Guide Version 1.1 July 2014 1 Table of Contents: I. Prefix Overview II. Getting Started A. Prerequisite Learning III. Watson Experience Manager A. Assign User Roles

More information

If you have signed up for a free trial and want some guidance on the next steps, check out our Quick Start Guide.

If you have signed up for a free trial and want some guidance on the next steps, check out our Quick Start Guide. Using little green plane is a breeze. If you have signed up for a free trial and want some guidance on the next steps, check out our Quick Start Guide. This gives you everything you need to create stunning

More information

Logging In You must log in to the system before you can begin exchanging files with UMB. To log in to the system, follow the steps below.

Logging In You must log in to the system before you can begin exchanging files with UMB. To log in to the system, follow the steps below. Using UMB Secure File Transfer UMB Secure File Transfer is a Java-based interface that you can use to upload and download your files through a secure SSL connection using a Javasupported web browser such

More information

Configuring Salesforce

Configuring Salesforce Chapter 94 Configuring Salesforce The following is an overview of how to configure the Salesforce.com application for singlesign on: 1 Prepare Salesforce for single sign-on: This involves the following:

More information

1 Overview 1 1.1 Configuration on MACH Web Portal 1

1 Overview 1 1.1 Configuration on MACH Web Portal 1 API Guide Version 2 Table of Content 1 Overview 1 1.1 Configuration on MACH Web Portal 1 1.2 Other Pre-requisites 1 1.2.1 Apple Push SSL Certificate 1 1.2.2 Android GCM Key 2 1.2.3 Enabling Push Notification

More information

User manual for the visitors of Interreg Danube Programme website

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...

More information

AT&T Synaptic Storage as a Service SM Getting Started Guide

AT&T Synaptic Storage as a Service SM Getting Started Guide AT&T Synaptic Storage as a Service SM Getting Started Guide Version 3.0 2011 AT&T Intellectual Property. All rights reserved. AT&T and the AT&T logo are trademarks of AT&T Intellectual Property. All other

More information

Connected Data. Connected Data requirements for SSO

Connected Data. Connected Data requirements for SSO Chapter 40 Configuring Connected Data The following is an overview of the steps required to configure the Connected Data Web application for single sign-on (SSO) via SAML. Connected Data offers both IdP-initiated

More information

DocuSign Connect for Salesforce Guide

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

More information

Configuring user provisioning for Amazon Web Services (Amazon Specific)

Configuring user provisioning for Amazon Web Services (Amazon Specific) Chapter 2 Configuring user provisioning for Amazon Web Services (Amazon Specific) Note If you re trying to configure provisioning for the Amazon Web Services: Amazon Specific + Provisioning app, you re

More information

ConvincingMail.com Email Marketing Solution Manual. Contents

ConvincingMail.com Email Marketing Solution Manual. Contents 1 ConvincingMail.com Email Marketing Solution Manual Contents Overview 3 Welcome to ConvincingMail World 3 System Requirements 3 Server Requirements 3 Client Requirements 3 Edition differences 3 Which

More information

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview October 2014 2014 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

Installation & Configuration Guide Professional Edition

Installation & Configuration Guide Professional Edition Installation & Configuration Guide Professional Edition Version 2.3 Updated January 2014 Table of Contents Getting Started... 3 Introduction... 3 Requirements... 3 Support... 4 Recommended Browsers...

More information

Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication. Mobile App Activation

Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication. Mobile App Activation Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication Mobile App Activation Before you can activate the mobile app you must download it. You can have up to

More information

Spambrella SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide

Spambrella SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide January 24, 2015 Spambrella SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide Spambrella and/or other noted Spambrella related products contained herein are registered

More information

Getting Started (direct link to Lighthouse Community http://tinyurl.com/q5dg5wp)

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

More information

How to Set Up your Resident Portal Account on RentCafe:

How to Set Up your Resident Portal Account on RentCafe: INSTRUCTIONS FOR REGISTERING YOUR ONLINE PORTAL ACCOUNT How to Set Up your Resident Portal Account on RentCafe: (1) Visit your Property Website (2) Click the blue Resident Login button in the middle of

More information

Salesforce Integration. Installation Manual Release

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

More information

Wakefield Council Secure email and file transfer User guide for customers, partners and agencies

Wakefield Council Secure email and file transfer User guide for customers, partners and agencies Wakefield Council Secure email and file transfer User guide for customers, partners and agencies The nature of the work the council carries out means that we often deal with information that is sensitive

More information

SpringCM Integration Guide. for Salesforce

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

More information

User s Guide For Department of Facility Services

User s Guide For Department of Facility Services Doc s File Server User s Guide For Department of Facility Services For Ver : 7.2.88.1020 Rev : 1_05-27-2011 Created by : Elliott Jeyaseelan 2 Table of Contents SERVER LOGIN & AUTHENTICATION REQUIREMENTS

More information

Contactegration for The Raiser s Edge

Contactegration for The Raiser s Edge Contactegration for The Raiser s Edge development@zeidman.info www.zeidman.info UK: 020 3637 0080 US: (646) 570 1131 Table of Contents Overview... 3 Installation... 3 Set up... 4 Activation... 5 Connecting

More information

SpringCM Integration Guide. for Salesforce

SpringCM Integration Guide. for Salesforce SpringCM Integration Guide for Salesforce September 2014 Introduction You are minutes away from fully integrating SpringCM into your Salesforce account. The SpringCM Open Cloud Connector will allow you

More information

Import: Create Teachers

Import: Create Teachers Import: Create Teachers Instead of having teachers register manually using the school passcode, you have the option of importing a spreadsheet to create teacher usernames. You will need administrative

More information

Email Marketing Software

Email Marketing Software Email Marketing Software I Email Marketing Software Table of Contents Foreword 0 Part I Mailer Utilities 1 1 Main Page... 1 2 Troubleshooting... 1 3 Translate... 6 Part II Manage News. List 6 1 Getting

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

2016 Gateway Health Certification

2016 Gateway Health Certification 2016 Onboarding 2016 Gateway Health Certification Welcome to the 2016 Gateway Health Certification 1. Open the email you received from your up-line, it should look similar to this and contain your Agent

More information

File Share Service User guide

File Share Service User guide File Share Service User guide Version: 2.0 Written by: Sriram Rao Last Modified: 03/16/2012 1 Index Index... 2 Overview... 3 Change Log... 4 Login Instructions... 5 Searching files by name or content...

More information

Sending an email through Convio can be accomplished by the following six steps:

Sending an email through Convio can be accomplished by the following six steps: Convio Training Table of Contents Overview... 5 Getting Started... 5 Logging into Convio... 5 Six Steps to Convio Success... 5 Adding Names to the Convio Database... 5 Preparing/Formatting your List for

More information

DIY Email Manager User Guide. http://www.diy-email-manager.com

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

More information

District 211 Technology. ipad Setup Instructions

District 211 Technology. ipad Setup Instructions District 211 Technology ipad Setup Instructions Turn power on & Start Setup Hold down the power button to turn on your ipad. The power button is located on the top right edge of the ipad. Slide the slider

More information

Configuration Guide - OneDesk to SalesForce Connector

Configuration Guide - OneDesk to SalesForce Connector Configuration Guide - OneDesk to SalesForce Connector Introduction The OneDesk to SalesForce Connector allows users to capture customer feedback and issues in OneDesk without leaving their familiar SalesForce

More information

How To Backup Your Computer With A Remote Drive Client On A Pc Or Macbook Or Macintosh (For Macintosh) On A Macbook (For Pc Or Ipa) On An Uniden (For Ipa Or Mac Macbook) On

How To Backup Your Computer With A Remote Drive Client On A Pc Or Macbook Or Macintosh (For Macintosh) On A Macbook (For Pc Or Ipa) On An Uniden (For Ipa Or Mac Macbook) On Remote Drive PC Client software User Guide -Page 1 of 27- PRIVACY, SECURITY AND PROPRIETARY RIGHTS NOTICE: The Remote Drive PC Client software is third party software that you can use to upload your files

More information

API documentation - 1 -

API documentation - 1 - API documentation - 1 - Table of Contents 1. Introduction 1.1. What is an API 2. API Functions 2.1. Purge list of files 2.1.1 Description 2.1.2 Implementation 2.2. Purge of whole cache (all files on all

More information

INTRODUCTION TO CONSTANT CONTACT Email Marketing Program

INTRODUCTION TO CONSTANT CONTACT Email Marketing Program INTRODUCTION TO CONSTANT CONTACT Email Marketing Program Technology Learning Centers Bucks County Community College www.bucks.edu/tlc Step 1: Log In To access Constant Contact, open a browser such as Internet

More information

Using Voltage SecureMail

Using Voltage SecureMail Using Voltage SecureMail Using Voltage SecureMail Desktop Based on the breakthrough Identity-Based Encryption technology, Voltage SecureMail makes sending a secure email as easy as sending it without encryption.

More information

HowTo. Planning table online

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

More information

Marcum LLP MFT Guide

Marcum LLP MFT Guide MFT Guide Contents 1. Logging In...3 2. Installing the Upload Wizard...4 3. Uploading Files Using the Upload Wizard...5 4. Downloading Files Using the Upload Wizard...8 5. Frequently Asked Questions...9

More information

G-Lock EasyMail7. Startup Guide. Client-Server Email Marketing Solution for Windows. To learn more about G-Lock EasyMail7, visit http://easymail7.

G-Lock EasyMail7. Startup Guide. Client-Server Email Marketing Solution for Windows. To learn more about G-Lock EasyMail7, visit http://easymail7. G-Lock EasyMail7 Client-Server Email Marketing Solution for Windows Startup Guide 1 Table of Contents This document is your startup guide for G-Lock EasyMail7 product. It is designed to provide you with

More information

Does the GC have an online document management solution?

Does the GC have an online document management solution? This FAQ contains: Web File Services definition Access web file services Create a WFS folder Upload a document Email a link to a document folder Create WFS subscription Cancel existing subscription Create

More information

GUIDANCE ON ACCESSING THE HOUSTON METRO SECURE FTP SITE FOR DOCUMENT MANAGEMENT

GUIDANCE ON ACCESSING THE HOUSTON METRO SECURE FTP SITE FOR DOCUMENT MANAGEMENT GUIDANCE ON ACCESSING THE HOUSTON METRO SECURE FTP SITE FOR DOCUMENT MANAGEMENT Documents associated with the 5310 grant program will be stored and retrieved using Houston METRO's Secure FTP (FTP) site.

More information

Sonian Getting Started Guide October 2008

Sonian Getting Started Guide October 2008 Sonian Getting Started Guide October 2008 Sonian, Inc. For Authorized Use Only 1 Create your new archiving account 3 Configure your firewall for IMAP collections 4 (Skip this step if you will be using

More information

Welcome to PowerClaim Net Services!

Welcome to PowerClaim Net Services! Welcome to PowerClaim Net Services! PowerClaim Net Services provides a convenient means to manage your claims over the internet and provides detailed reporting services. You can access PowerClaim Net Services

More information

SEOSHOP - MAILCHIMP APP

SEOSHOP - MAILCHIMP APP SEOSHOP - MAILCHIMP APP V1.0 (BETA) INSTALLATION & USER MANUAL V1.0 AUG. 14, 2013 DEVELOPED BY TAUROS MEDIA NEDERLAND B.V. INFO@TAUROSMEDIA.COM WWW.TAUROSMEDIA.COM USER MANUAL SEOSHOP-MAILCHIMP APP V1.0

More information

Single Sign On: Volunteer User Guide

Single Sign On: Volunteer User Guide Single Sign On: Volunteer User Guide V3.0 Document Owner: Pathways Project Issue Date: 11-Jun-15 Purpose of the Document The Single Sign On (SSO) User Guide has been developed to provide users with instructions

More information

Campaign Monitor. Quick Reference Guid e

Campaign Monitor. Quick Reference Guid e Campaign Monitor Quick Reference Guid e TABLE OF CONTENTS Campaign Monitor overview... 2 Getting started... 3 Create a subscriber list... 3 Create a campaign... 5 Select the campaign format... 6 Modify

More information

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning Livezilla How to Install on Shared Hosting By: Jon Manning This is an easy to follow tutorial on how to install Livezilla 3.2.0.2 live chat program on a linux shared hosting server using cpanel, linux

More information

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) 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

More information

Alert Solutions Email by WebLaunch User Guide

Alert Solutions Email by WebLaunch User Guide Alert Solutions Email by WebLaunch User Guide Support: Phone: 800-929-1643 Email: support@alertsolutions.com Welcome to Alert Solutions: The one-stop solution for all your messaging needs. Thank you for

More information

Global UGRAD Program

Global UGRAD Program Application Instructions for Global UGRAD 2016-2017 Portal Step-by-Step I. REGISTERING FOR THE PROGRAM Google Chrome and Mozilla Firefox work best when completing the UGRAD application. We do NOT recommend

More information

SP-initiated SSO for Smartsheet is automatically enabled when the SAML feature is activated.

SP-initiated SSO for Smartsheet is automatically enabled when the SAML feature is activated. Chapter 87 Configuring Smartsheet The following is an overview of the steps required to configure the Smartsheet Web application for single sign-on (SSO) via SAML. Smartsheet offers both IdP-initiated

More information

Karelo e-services Inc. Contact us: service@karelo.com Tel. 604-608 2774 Fax 604-648 9188 MALING LISTS SYSTEM DOCUMENTATION TABLE OF CONTENTS

Karelo e-services Inc. Contact us: service@karelo.com Tel. 604-608 2774 Fax 604-648 9188 MALING LISTS SYSTEM DOCUMENTATION TABLE OF CONTENTS Karelo e-services Inc. Contact us: service@karelo.com Tel. 604-608 2774 Fax 604-648 9188 MALING LISTS SYSTEM DOCUMENTATION TABLE OF CONTENTS 1. ACCESSING MAILING LIST SYSTEM... 2 2. PREPARING AND SENDING

More information

Enrollment Process for Android Devices

Enrollment Process for Android Devices 1 Enrollment Process for Android Devices Introduction:... 2 Pre-requisites:... 2 Via SMS:... 2 Via Email:... 11 Self Service:... 19 2 Introduction: This is a brief guide to enrolling an android device

More information

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger. System Administrator Training Guide Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.com Contents Contents... 2 Before You Begin... 4 Overview... 4

More information

Release Notes. DocuSign Spring 15 Release Notes. Contents

Release Notes. DocuSign Spring 15 Release Notes. Contents Release Notes Updated March 6, 2015 DocuSign Spring 15 Release Notes This document provides information about the updates deployed to the DocuSign Production environment as part of the March 6, 2015 DocuSign

More information

FHLBNY File Transfer System (FTS)

FHLBNY File Transfer System (FTS) File Transfer System (FTS) Instruction Manual for Web Browser Connections Release Date: June 2012 2015 FEDERAL HOME LOAN BANK OF NEW YORK 101 PARK AVENUE NEW YORK, NY 10178 WWW..COM File Transfer System

More information

Salesforce Customer Portal Implementation Guide

Salesforce Customer Portal Implementation Guide Salesforce Customer Portal Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Configuring. SugarCRM. Chapter 121

Configuring. SugarCRM. Chapter 121 Chapter 121 Configuring SugarCRM The following is an overview of the steps required to configure the SugarCRM Web application for single sign-on (SSO) via SAML. SugarCRM offers both IdP-initiated SAML

More information

Title page. Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7

Title page. Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7 Title page Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7 APPLICATION API DEVELOPER GUIDE 3HE-10590-AAAA-TQZZA Issue 1 December 2015 Legal notice Legal notice Alcatel, Lucent, Alcatel-Lucent and the

More information

INTERSPIRE EMAIL MARKETER

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

More information

Synchronize with Salesforce

Synchronize with Salesforce Synchronize with Salesforce What is it? Salesforce is an industry leading SaaS business tool used by many companies. It's a great tool to use in combination with JangoMail--to provide the list data for

More information

Email UAE Bulk Email System. User Guide

Email UAE Bulk Email System. User Guide Email UAE Bulk Email System User Guide 1 Table of content Features -----------------------------------------------------------------------------------------------------03 Login ---------------------------------------------------------------------------------------------------------08

More information

Getting Started with Automizy

Getting Started with Automizy Getting Started with Automizy The Basics To help you get started, this guide will show you exactly how simple it is to use Automizy to combine automated multi-channel communication into your overall marketing

More information

RoboMail Mass Mail Software

RoboMail Mass Mail Software RoboMail Mass Mail Software RoboMail is a comprehensive mass mail software, which has a built-in e-mail server to send out e-mail without using ISP's server. You can prepare personalized e-mail easily.

More information

FireBLAST Email Marketing Solution v2

FireBLAST Email Marketing Solution v2 Installation Guide WELCOME to fireblast, one of the Industry s leading Email Marketing Software Solutions for your business. Whether you are creating a small email campaign, or you are looking to upgrade

More information

https://weboffice.edu.pe.ca/

https://weboffice.edu.pe.ca/ NETSTORAGE MANUAL INTRODUCTION Virtual Office will provide you with access to NetStorage, a simple and convenient way to access your network drives through a Web browser. You can access the files on your

More information

Frequently Asked Questions About the Managed Billing Platform

Frequently Asked Questions About the Managed Billing Platform Frequently Asked Questions About the Managed Billing Platform 1. When can I expect to be paid for a subscription to my application? 2. Why did I receive a payment outside of the normal payment collection

More information

For technical assistance our webmaster can be reached at web.master@arsha.org.

For technical assistance our webmaster can be reached at web.master@arsha.org. Welcome Thank you for your interest in ArSHA.org s job listing boards. We ve made a number of changes and improvements to our job listings, including the following enhancements: You can now create an account

More information

Pinpointe User s Guide

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

More information

Michigan Care Improvement Registry (MCIR) User Registration Four-Step Process

Michigan Care Improvement Registry (MCIR) User Registration Four-Step Process Michigan Care Improvement Registry (MCIR) User Registration Four-Step Process Step 1. User Receives PIN Number Email from mcir@michigan.gov Once a User is added to MCIR, they will receive an email message

More information

Creating a Content Group and assigning the Encrypt action to the Group.

Creating a Content Group and assigning the Encrypt action to the Group. Product Guide Revision A SaaS Email Encryption Enablement for Customers, Domains, and Users Email Encryption Customers who are provisioned for SaaS Email Encryption can easily configure their Content Policies

More information

Cloudwords Drupal Module. Quick Start Guide

Cloudwords Drupal Module. Quick Start Guide Cloudwords Drupal Module Quick Start Guide 1 Contents INTRO... 3 HOW IT WORKS... 3 BEFORE YOU INSTALL... 4 In Cloudwords... 4 In Drupal... 4 INSTALLING THE CLOUDWORDS DRUPAL MODULE... 5 OPTION ONE: Install

More information

Your Archiving Service

Your Archiving Service It s as simple as 1, 2, 3 This email archiving setup guide provides you with easy to follow instructions on how to setup your new archiving service as well as how to create archiving users and assign archiving

More information

OCAN - Ontario Common Assessment of Need

OCAN - Ontario Common Assessment of Need Community Mental Health Common Assessment Project OCAN - Ontario Common Assessment of Need Data File Submission and Report Retrieval Via Secure File Transfer Protocol (SFTP) Table of Contents 1. Document

More information

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA Step by step guide Step 1: Purchasing a RSMembership! membership Step 2: Download RSMembership! 2.1. Download the component 2.2. Download RSMembership! language files Step 3: Installing RSMembership! 3.1:

More information

Single Sign-On Instructions (SSO) Registration for the SSO

Single Sign-On Instructions (SSO) Registration for the SSO Single Sign-On Instructions (SSO) Registration for the SSO Step 1: Registration to Single Sign-On (SSO) Skip this section if you ve already registered for a SSO account. Open your web browser (Internet

More information

Swisscom Mobile Device Services Quick Start Guide: Set-up Remote Management basic. Mobile Device Services Februar 2014

Swisscom Mobile Device Services Quick Start Guide: Set-up Remote Management basic. Mobile Device Services Februar 2014 Swisscom Mobile Device Services Quick Start Guide: Set-up Remote Management basic Mobile Device Services Februar 2014 Contents 2 Login «Welcome to Swisscom MDS» First steps Step 1: Installing the MDM certificate

More information

FREQUENTLY ASKED QUESTIONS TOPIC LIST INSTRUCTIONS FOLLOW BELOW

FREQUENTLY ASKED QUESTIONS TOPIC LIST INSTRUCTIONS FOLLOW BELOW FREQUENTLY ASKED QUESTIONS TOPIC LIST INSTRUCTIONS FOLLOW BELOW Step-By-Step Instructions Before you apply Page/s 2 How to register for irecruitment Page/s 2-3 How to apply for a position Page/s 2-3 Tips

More information

The Power Loader GUI

The Power Loader GUI The Power Loader GUI (212) 405.1010 info@1010data.com Follow: @1010data www.1010data.com The Power Loader GUI Contents 2 Contents Pre-Load To-Do List... 3 Login to Power Loader... 4 Upload Data Files to

More information

How to Login Username Password:

How to Login Username Password: How to Login After navigating to the SelecTrucks ATTS Call Tracking & Support Site: www.selectrucksatts.com Select Corporate Link to login for Corporate owned Centers/Locations. Username: Your Email Address

More information

LICENTIA. Nuntius. Magento Email Marketing Extension REVISION: THURSDAY, JUNE 2, 2016 (V1.9.0.0)

LICENTIA. Nuntius. Magento Email Marketing Extension REVISION: THURSDAY, JUNE 2, 2016 (V1.9.0.0) LICENTIA Nuntius Magento Email Marketing Extension REVISION: THURSDAY, JUNE 2, 2016 (V1.9.0.0) INDEX About the extension... 6 Compatability... 6 How to install... 6 After Instalattion... 6 Integrate in

More information

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe`

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe` Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A OwnCloud User Manual TO I Cafe` DATED 20 Sep 2014 User Manual Guid For Owncloud I. Accessing the owncloud Web Interface To access the owncloud

More information