Zulu edm API Handbook

Size: px
Start display at page:

Download "Zulu edm API Handbook"

Transcription

1 Zulu edm API Handbook Prepared by Wesley Wright 21 st March 2016 Version 1.0 Page 1 of 13

2 CONTENTS OVERVIEW... 3 API ACCESS... 4 API KEY... 4 LOGIN CREDENTIALS... 4 API REQUEST PARAMETER ORDER... 4 GENERIC ERROR RESPONSE CODES... 5 CONTACT OPERATIONS... 6 Contacts.AddContact... 6 Contacts.GetContactsByGroup... 8 GROUP OPERATIONS... 9 Groups.AddContactToGroup... 9 Groups.RemoveContactFromGroup... 9 Groups.GetListing Groups.EditGroup CAMPAIGN OPERATIONS Campaigns.GetSentCampaigns Campaigns.GetCampaignInteractions Page 2 of 13

3 OVERVIEW This document outlines the functions and operations available via the Zulu edm API. The API provides access to some of the data and features of your Zulu edm account via a SOAP based platform. Whilst not all platform data is made available via the API, it is hoped that the available functions will provide some meaningful data endpoints for integrating into your own custom applications. If there is something within the edm platform you specifically need access too that isn t specified within the API documentation, please feel free to contact us to see if we can cater for this through either further API development or a custom integrated solution. *Note: The Zulu edm API is only available on certain versions of the software. Please contact us if you require access to the API to discuss your requirements further. Page 3 of 13

4 API ACCESS The API is accessed via SOAP calls made to various function endpoints (as specified further down in the document). All requests made to the API must include an account API Key as well as valid edm Username and Password credentials belonging to the account you are trying to access. Common apikey Yes String kv97ywef97yhw5efh34876wefar Account API Key user Yes String John!son1 Username of the Administrator making the request pass Yes String sdhagsd&3j# Password of the Administrator making the request API KEY Each edm account is assigned an individual and unique API Key which identifies which edm account to access and execute the functions on at the time of receiving the request. LOGIN CREDENTIALS Login credentials must be provided in each API request and are the same as those used to login to the web application as normal via your web browser. API REQUEST PARAMETER ORDER Please note that for API versions 1.0 ( and 1.1 ( all parameters listed in this document must be specified in the order as they appear. Page 4 of 13

5 GENERIC ERROR RESPONSE CODES API methods will respond with a designated code dependent on the result of the action requested. There are several Generic response codes that can be returned regardless of which API method is called. The details of these response codes are listed below: Code Description 201 API Key 202 Invalid Username provided 203 Invalid Password provided Page 5 of 13

6 CONTACT OPERATIONS Listed below are the methods available to interact with the contacts section of the platform. Contacts.AddContact Endpoint: Description: This function is used to add and edit contacts within the system. (*Note: If an address that exists is provided in the request, the existing contact record is updated) *Please note: All parameters specified below in the request parameter table must be built in an associative array format as displayed below and the $data value passed as the first parameter to the API function. E.g. $data[] = array('field' $data[] = array('field' $data[] = array('field' $data[] = array('field' => 'firstname', 'value' => 'Jason') => 'lastname', 'value' => 'Mc\'Allindon'); => 'country', 'value' => 'Sudan'); => ' ', 'value' => 'test @test .org') /* Add the Contact to the System */ $result = $client-> soapcall('contacts.addcontact', array( )); 'apikey' => $apikey, 'user' => $username, 'pass' => $password, 'data' => $data title No String Mrs Title firstname No String Jason First Name lastname No String Mc Allindon Last Name Yes String test @test .org Address telephone No String (08) Home Phone Number workphone No String Work Phone Number mobilephone No String Mobile Phone Number fax No String Fax Number dateofbirth No String Contacts Date of Birth (YYYY-MM-DD) address1 No String 51 Yellow Street Address Line 1 address2 No String Address Line 2 city No String Murray Bridge City of residence state No String VIC State of residence Page 6 of 13

7 postcode No String 7293 Postcode of residence country No String Sudan Country of residence companyname No String Mc Allindon & Co Pty Ltd The Company this Contact belongs to subscribed No String No subscription status (Yes or No) doubleopted-in No String No Contact double opt-in status (Yes or No) Code Description 401 Address invalid or not provided Sample Code <?php /* API Credentials */ $apiurl = ' $apikey = 'apikey'; $username = 'username'; $password = 'password'; /* Create a SOAP Client Object */ $client = new SoapClient($apiURL, array('trace' => 1, 'cache_wsdl' => WSDL_CACHE_NONE)); /* Setup the Contact Array of Details */ $data[] = array('field' => 'firstname', 'value' => 'First Name'); $data[] = array('field' => 'lastname', 'value' => 'Last Name'); $data[] = array('field' => 'country', 'value' => 'Argentina'); $data[] = array('field' => ' ', 'value' => 'test @ test.com'); $data[] = array('field' => 'telephone', 'value' => ' '); $data[] = array('field' => 'subscribed', 'value' => '1'); $result = null; try { /* Add the Contact to the System */ $result = $client-> soapcall('contacts.addcontact', array( )); 'apikey' => $apikey, 'user' => $username, 'pass' => $password, 'data' => $data if ($result->status === '101') { // Contact Successfully Added/Updated */ /* The contactid variable returned is the primary key of the generated or updated user //$result->contactid Page 7 of 13

8 } echo '<pre>'; var_dump($result); echo '</pre>'; } catch (SoapFault $soapfault) { } var_dump($soapfault->faultcode); Sample Response Contacts.GetContactsByGroup Endpoint: Description: This function is used to retrieve contacts within a specified group in the system. key Yes String id The key to base group contact retrieval on (id or name) value Yes String 17 The key value to use to retrieve contacts for the specified group (A number when using ID as the key and a String when using group name as the key) start Yes Integer 0 Starting point for record limiting (same functionality as the first value of an SQL limit clause) limit Yes Integer 100 Limit of records to retrieve (same functionality as the second value of an SQL limit clause) Code Description 207 Invalid record limiting parameters provided 250 Invalid key parameter provided. Only id or name are valid options Page 8 of 13

9 GROUP OPERATIONS Listed below are the methods available to interact with the groups section of the platform. Groups.AddContactToGroup Endpoint: Description: This function is used to add a contact to a group. group_id Yes Integer 17 Group Primary Key people_id Yes Integer 1652 Contact Primary Key Code Description 251 Invalid Group ID specified 402 Invalid Contact ID specified Sample Code <?php /* API Credentials */ $apiurl = ' $apikey = 'apikey'; $username = 'username'; $password = 'password'; /* Create a SOAP Client Object */ $client = new SoapClient($apiURL, array('trace' => 1, 'cache_wsdl' => WSDL_CACHE_NONE)); $result = null; try { /* Add the Contact to the System */ $result = $client-> soapcall('groups.addcontacttogroup', array( )); 'apikey' => $apikey, 'user' => $username, 'pass' => $password, 'group_id' => 3, 'people_id' => 6 if ($result->status === '101') { } // Contact Successfully Added to Group echo '<pre>'; Page 9 of 13

10 var_dump($result); echo '</pre>'; } catch (SoapFault $soapfault) { } var_dump($soapfault); Sample Response Groups.RemoveContactFromGroup Endpoint: Description: This function is used to remove a contact from the specified group. group_id Yes Integer 17 Group Primary Key people_id Yes Integer 1652 Contact Primary Key Code Description 406 Contact is not a member of the given group Groups.GetListing Endpoint: Description: This function is used to retrieve the list of groups within the system. groupcount Yes Boolean 0 Whether to include the count of contacts in the groups (1 or 0) treetype Yes String h Whether to retrieve groups orders by the hierarchy or just alphabetically ( h for hierarchy, a for alphabetical) Code Description Page 10 of 13

11 309 Invalid Tree Type requested. Only h or a are valid options Groups.EditGroup Endpoint: Description: This function is used to create or edit a group. id Yes Integer 17 Group Primary Key. If 0 or a non-existent id is passed, a new group will be created otherwise the group with the given ID will be edited name Yes String My new group The name of the group description Yes String My new group s description The description of the group public Yes Boolean 1 Whether this group will appear as selectable on the subscription dashboard (1 for public group, 0 for nonpublic groups) parent Yes Integer 0 The parent group id for this group (0 is a top level group) Code Description 365 Group Name must be specified Page 11 of 13

12 CAMPAIGN OPERATIONS Listed below are the methods available to interact with the campaigns section of the platform. Campaigns.GetSentCampaigns Endpoint: Description: This function is used to retrieve the list of sent campaigns in a given folder. categoryid Yes Integer 0 The campaign category to retrieve sent campaigns from Code Description Campaigns.GetCampaignInteractions Endpoint: Description: This function is used to retrieve all interactions of the given type for the campaign specified. campaignid Yes Integer 14 The Primary Key of the Campaign interactiontype No String click_throughs The type of interaction to retrieve. click_throughs, opens, unsubscribes, hard_bounces, soft_bounces and bounces are the valid options. opens is the default value Code Description 720 Campaign ID specified doesn t exist Sample Code Page 12 of 13

13 Sample Response Page 13 of 13

Go to SQA Academy the website address is

Go to SQA Academy the website address is Joining a course on the SQA Academy You may find it useful to print out this document for reference. There are two steps to joining an SQA Academy course. First you need an account with the SQA Academy,

More information

ARELLO.COM Licensee Verification Web Service v2.0 (LVWS v2) Documentation. Revision: 8/22/2018

ARELLO.COM Licensee Verification Web Service v2.0 (LVWS v2) Documentation. Revision: 8/22/2018 ARELLO.COM Licensee Verification Web Service v2.0 (LVWS v2) Documentation Revision: 8/22/2018 Table of Contents Revision: 8/22/2018... 1 Introduction... 3 Subscription... 3 Interface... 3 Formatting the

More information

Edition 3.2. Tripolis Solutions Dialogue Manual version 3.2 2

Edition 3.2. Tripolis Solutions Dialogue Manual version 3.2 2 Edition 3.2 Tripolis Solutions Dialogue Manual version 3.2 2 Table of Content DIALOGUE SETUP... 7 Introduction... 8 Process flow... 9 USER SETTINGS... 10 Language, Name and Email address settings... 10

More information

Recite CMS Web Services PHP Client Guide. Recite CMS Web Services Client

Recite CMS Web Services PHP Client Guide. Recite CMS Web Services Client Recite CMS Web Services PHP Client Guide Recite CMS Web Services Client Recite CMS Web Services PHP Client Guide Copyright 2009 Recite Pty Ltd Table of Contents 1. Getting Started... 1 Adding the Bundled

More information

Unit 27 Web Server Scripting Extended Diploma in ICT

Unit 27 Web Server Scripting Extended Diploma in ICT Unit 27 Web Server Scripting Extended Diploma in ICT Dynamic Web pages Having created a few web pages with dynamic content (Browser information) we now need to create dynamic pages with information from

More information

PERFORMANCE HORIZON PUBLISHER API INTRODUCTION

PERFORMANCE HORIZON PUBLISHER API INTRODUCTION PERFORMANCE HORIZON PUBLISHER API INTRODUCTION Version 1.0 October 2016 WHY USE API S All of the features and functionality that we have developed aim to give you, the user, a greater understanding of

More information

Traction API Reference Version Date Created. 23 March Page 1 of 106, Prepared 23 March 2009

Traction API Reference Version Date Created. 23 March Page 1 of 106, Prepared 23 March 2009 Traction API Reference Version 3.51 Date Created 23 March 2009 Page 1 of 106, Prepared 23 March 2009 Contents 1. Introduction to the Traction API...9 1.1 Overview...9 1.2 Supported Languages...9 1.2.1.NET

More information

icontact for Salesforce Installation Guide

icontact for Salesforce Installation Guide icontact for Salesforce Installation Guide For Salesforce Enterprise and Unlimited Editions Lightning Experience Version 2.3.4 Last updated October 2016 1 WARNING DO NOT SKIP ANY PART OF THIS GUIDE. EVERY

More information

Park The Flagship Country Park Customer Name Pznaxrfv Address 1 zkmgjjwoqztwzt Address 2 lfkqrjjykwbibnzoccq Town / City New York Country USA Postcode 1056 County USA Telephone 72079935327 E-mail rgrpufbc@igadxzgu.com

More information

API HTTP / HTTPS INTEGRATE THE SMS IN YOUR APPLICATIONS, YOUR WEBSITE AUTOMATE YOUR TEXT OF SHIPMENTS SETTING SINGLE PLACE WITHOUT ADDITIONAL COST

API HTTP / HTTPS INTEGRATE THE SMS IN YOUR APPLICATIONS, YOUR WEBSITE AUTOMATE YOUR TEXT OF SHIPMENTS SETTING SINGLE PLACE WITHOUT ADDITIONAL COST ------ ------ ------ ------ - INTEGRATE THE SMS IN YOUR APPLICATIONS, YOUR WEBSITE AUTOMATE YOUR TET OF SHIPMENTS SETTING SINGLE PLACE WITHOUT ADDITIONAL COST API HTTP / HTTPS Integration Manual VERSION

More information

Web Service API for. Document version 0.5 (2015-8) (Draft)

Web Service API for. Document version 0.5 (2015-8) (Draft) Web Service API for Document version 0.5 (2015-8) (Draft) Team Mobilis Co., Ltd Email: technical@teammobilis.com Technical hot line: 089-668-9338 (Vorapoap) 2 Contents HOW TO CREATE WEB APP USERNAME/PASSWORD?...

More information

Family Map Server Specification

Family Map Server Specification Family Map Server Specification Acknowledgements The Family Map project was created by Jordan Wild. Thanks to Jordan for this significant contribution. Family Map Introduction Family Map is an application

More information

for Microsoft Dynamics CRM Online (On-Demand) Installation Instructions

for Microsoft Dynamics CRM Online (On-Demand) Installation Instructions for Microsoft Dynamics CRM Online (On-Demand) Installation Instructions April 2009 www.crm.hoovers.com/msdynamics Table of Contents Installation Requirements...3 Basic Installation...4 Configure Microsoft

More information

Linking Reports to your Database in Crystal Reports 2008

Linking Reports to your Database in Crystal Reports 2008 Linking Reports to your Database in Crystal Reports 2008 After downloading and saving a report on your PC, either (1) browse-to the report using Windows Explorer and double-click on the report file or

More information

Marketo Data Shield Setup Guide

Marketo Data Shield Setup Guide Marketo Data Shield Setup Guide Marketo Data Shield Setup Guide Page 1 of 20 Marketo Integration Diagram 1 2 3 Webhooks Company Names Data Shield Admin Panel New Record 4 Case? Periods? Convert to proper

More information

Contents. e-blast User Guide Oct

Contents. e-blast User Guide Oct Contents Contents... 1 Set Up... 2 Ordering a new site... 2 Configuration & Installation... 2 Overview... 3 Features... 3 Getting Started... 4 Home Screen... 5 Icon Usage... 6 Navigation Side Bar... 6

More information

REST API FOR CREATING REAL TIME REMOTE LUNCH INVITATIONS

REST API FOR CREATING REAL TIME REMOTE LUNCH INVITATIONS API Integration REST API FOR CREATING REAL TIME REMOTE LUNCH INVITATIONS V2.0 EATNGAGE CONFIDENTAL AND PROPRIATERAY 7915 Westglen Dr. Houston Texas, 77063 Support@eatNgage.com 713-429-4757 Table of Contents

More information

Family Map Server Specification

Family Map Server Specification Family Map Server Specification Acknowledgements Last Modified: January 5, 2018 The Family Map project was created by Jordan Wild. Thanks to Jordan for this significant contribution. Family Map Introduction

More information

Google Calendar ID. School Calendar calendar@beautifulsaviorchurch.com This ID can be pasted into Other Calendars in the Google Calendar online to add the calendar directly into your Google Calendar. ical

More information

Family Map Server Specification

Family Map Server Specification Family Map Server Specification Acknowledgements The Family Map project was created by Jordan Wild. Thanks to Jordan for this significant contribution. Family Map Introduction Family Map is an application

More information

Front Desk 2018 Practice Management System

Front Desk 2018 Practice Management System Front Desk 2018 Practice Management System Physitrack Integration Guide Copyright Smartsoft Pty Ltd. 1996-2018 All rights reserved. No part of this publication may be reproduced without the express written

More information

Allowing access to Outlook 2000 folders Version 1.00

Allowing access to Outlook 2000 folders Version 1.00 Allowing access to Outlook 2000 folders Version 1.00 Need to Know TM To allow another network user access to some or all of your Outlook folders you need to complete two processes. One in your Outlook

More information

Cardkey Systems, Inc. Cardkey PEGASYS 1000 and 2000 MIS Interface Program 8K\OYOUT',KHX[GX_

Cardkey Systems, Inc. Cardkey PEGASYS 1000 and 2000 MIS Interface Program 8K\OYOUT',KHX[GX_ Cardkey Systems, Inc. Cardkey PEGASYS 1000 and 2000 MIS Interface Program )GXJQK_3/9/TZKXLGIK /TYZGRRGZOUTGTJ)UTLOM[XGZOUT 8K\OYOUT',KHX[GX_ )GXJQK_9_YZKSY/TI :GVU)GT_UT8UGJ9OSO

More information

How to bulk upload users

How to bulk upload users City & Guilds How to bulk upload users How to bulk upload users The purpose of this document is to guide a user how to bulk upload learners and tutors onto SmartScreen. 2014 City and Guilds of London Institute.

More information

Zoho Integration. Installation Manual Release. 1 P a g e

Zoho Integration. Installation Manual Release. 1 P a g e Zoho Integration Installation Manual Release 1 P a g e Table of Contents Zoho Integration... 3 Customizing the settings in LeadForce1... 6 Configuration Settings... 7 Schedule Settings... 8 2 P a g e Zoho

More information

Use the Bullhorn SOAP API to Work with Candidates

Use the Bullhorn SOAP API to Work with Candidates Use the Bullhorn SOAP API to Work with Candidates Introduction This tutorial is for developers who create custom applications that use the Bullhorn web services APIs. The tutorial describes how to work

More information

Oracle Eloqua and Salesforce

Oracle Eloqua and Salesforce http://docs.oracle.com Oracle Eloqua and Salesforce Integration Guide 2018 Oracle Corporation. All rights reserved 07-Jun-2018 Contents 1 Integrating Oracle Eloqua with Salesforce 4 2 Overview of data

More information

SSO API Specification Doc (Quest Track) Version Date Author Description Index

SSO API Specification Doc (Quest Track) Version Date Author Description Index SSO API Specification Doc (Quest Track) Version Date Author Description 1.0 07/28/2015 Bob Rodgers Initial draft Index 1. Provision User 2. Verify User 3. Login User Conventions Status Codes User Object

More information

version 2.0 HTTPS SMSAPI Specification Version 1.0 It also contains Sample Codes for -.Net - PHP - Java

version 2.0 HTTPS SMSAPI Specification Version 1.0 It also contains Sample Codes for -.Net - PHP - Java HTTPS SMS API SPEC version 2.0 HTTPS SMSAPI Specification This document contains HTTPS API information about - Pushing SMS, - Pushing Unicode SMS, - Scheduling SMS - Checking SMS credits, Version 1.0 -

More information

SAS2000. Victorian Independent Schools: VCAA AIM Export Preparation. User Guide

SAS2000. Victorian Independent Schools: VCAA AIM Export Preparation. User Guide SAS2000 Victorian Independent Schools: VCAA AIM Export Preparation User Guide Human Edge Software Corporation Pty Ltd 417 City Road South Melbourne Vic 3205 Support Centre: 1300 301 931 Human Edge Software

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Core Corporate Admin User Manual Release 17.1.0.0.0 Part No. E83887-01 March 2017 Core Corporate Admin User Manual March 2017 Oracle Financial Services Software Limited

More information

APIs: Core specification

APIs: Core specification Accident Compensation Commission : Core specification Software specification Version 0.4, Draft 06 March 2018 for Release 1.1 ICS : Core specification Table of contents 1 ICS : overview... 5 1.1 Summary

More information

WordPress: Creating A Site. WordPress: Events Calendar. Wordpress: Adding Events. Wordpress: Embedding Videos. Wordpress: Subscription Widget

WordPress: Creating A Site. WordPress: Events Calendar. Wordpress: Adding Events. Wordpress: Embedding Videos. Wordpress: Subscription Widget WordPress 1 Creating Sites 1.1 2 3 4 WordPress: Creating A Site 4 The Event Calendar 2.1 WordPress: Events Calendar 2.2 Wordpress: Adding Events 9 14 Extras 3.1 Wordpress: Embedding Videos 18 3.2 Wordpress:

More information

DOLLAR GENERAL CAREER SITE CANDIDATE ONLINE APPLICATION REFERENCE GUIDE

DOLLAR GENERAL CAREER SITE CANDIDATE ONLINE APPLICATION REFERENCE GUIDE DOLLAR GENERAL CAREER SITE CANDIDATE ONLINE APPLICATION REFERENCE GUIDE In June 2016, Dollar General launched a new online application system. This Reference Guide is for the new system and includes the

More information

VIP2MedQuist. VIP.NET to MedQuist Interface Installation Guide

VIP2MedQuist. VIP.NET to MedQuist Interface Installation Guide VIP.NET to MedQuist Interface Installation Guide Page 1 27/9/2010 Application developed by: Stuart Forge Innovative Data Pty Ltd P.O. Box 4006 Balwyn East Vic 3103 Ph. 0419 355 144 E-mail: SForge@InnovativeData.com.au

More information

CRM Service Wrapper User Guide

CRM Service Wrapper User Guide Summary This document details the usage of the CRM Service Wrapper by xrm. The service wrapper allows you to communicate with a Microsoft Dynamics CRM application (called CRM for convenience in this document)

More information

elocalise Mobile Introduction

elocalise Mobile Introduction elocalise Mobile Introduction Hi and a big thank you for choosing elocalise for your mobile marketing! We sincerely hope you get a lot out of using this tool as we believe that it can potentially change

More information

An Introduction to the Landlord TAP for New Users

An Introduction to the Landlord TAP for New Users An Introduction to the Landlord TAP for New Users Contents THIS DOCUMENT... 3 ABOUT THE LANDLORD TAP... 3 WHO IS THE LANDLORD TAP FOR?... 3 WHAT DOES THE LANDLORD TAP DO?... 4 HOW DO I GET STARTED?...

More information

Remote identification service integration

Remote identification service integration Remote identification service integration Technical description 2018 Contents 1 Document... 3 2 Process schema... 3 3 Client s requirements... 3 4 HTTP REST communication... 4 5 Process Example... 7 6

More information

CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE

CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE This setup guide will help you integrate Magento with your Campaigner account. A API Settings API username/password You must enter the API credentials for your

More information

SUBSCRIPTION API. Document Version. Introduction

SUBSCRIPTION API. Document Version. Introduction SUBSCRIPTION API Contents Contents... 1 Document Version... 1 Introduction... 1 Procedure to configure Web Service User in Billdozer:... 2 Http Post Parameters... 2 Package... 3 List... 3 Response Parameter

More information

Trigger SMS API. API Documentation SPLIO - SPRING Contact and Campaign Trigger SMS API - EN v4.0.docx

Trigger SMS API. API Documentation SPLIO - SPRING Contact and Campaign Trigger SMS API - EN v4.0.docx API Documentation 2017-09-08 Summary Introduction... 3 Access... 3 Base URL... 3 Europe hosting... 3 Asia hosting... 3 Authentication... 3 Request format... 4 Response format... 4 Error Codes & Responses...

More information

Programming for the Web with PHP

Programming for the Web with PHP Aptech Ltd Version 1.0 Page 1 of 11 Table of Contents Aptech Ltd Version 1.0 Page 2 of 11 Abstraction Anonymous Class Apache Arithmetic Operators Array Array Identifier arsort Function Assignment Operators

More information

ewallet API integration guide version 5.1 8/31/2015

ewallet API integration guide version 5.1 8/31/2015 ewallet API integration guide version 5.1 8/31/2015 International Payout Systems, Inc. (IPS) ewallet API Integration Guide contains information proprietary to IPS, and is intended only to be used in conjunction

More information

Directory Integration

Directory Integration Overview, page 1 Import Process and File s, page 2 Configure, page 2 CRON Expressions, page 3 User File s, page 5 Group File s, page 8 Sign in to a Cisco WebEx Organization Enabled with, page 10 Overview

More information

Webhooks Integration Guide

Webhooks Integration Guide Webhooks Integration Guide Version 1.0 1 Table of Contents Content Page No Introduction 3 Supported Events 4 Configuring Webhooks 5 Security 5 What need to be done at my end? 6 How the data transmission

More information

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual Mobiketa Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging Quick-Start Manual Overview Mobiketa Is a full-featured Bulk SMS and Voice SMS marketing script that gives you control over your

More information

Sending Application Data to Tenstreet API Guide

Sending Application Data to Tenstreet API Guide Sending Application Data to Tenstreet API Guide Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy... 2 Support Requests...

More information

Choose a starting point:

Choose a starting point: Subscribing for School Bus Notifications Subscriptions Anyone can subscribe for email or SMS (text) notifications for so they know when bus routes are delayed or cancelled, school are closed or to get

More information

Discuss setting up JDBC connectivity. Demonstrate a JDBC program Discuss and demonstrate methods associated with JDBC connectivity

Discuss setting up JDBC connectivity. Demonstrate a JDBC program Discuss and demonstrate methods associated with JDBC connectivity Objectives Discuss setting up JDBC connectivity. Demonstrate a JDBC program Discuss and demonstrate methods associated with JDBC connectivity Setting Up JDBC Before you can begin to utilize JDBC, you must

More information

Biomids Persistent Proctor API

Biomids Persistent Proctor API Biomids Persistent Proctor API Institution Name : string Street : string City : string State : string PostalCode : string EmailDomain : string (ex: Biomids.com) Logo : string (name of logo file) // All

More information

Park Uphill Park Customer Name Hfggeees Address 1 IVwBzhlgWLkvOMXQI Address 2 XZEFmVMiyfNUM Town / City New York Country USA Postcode 2327 County USA Telephone 20891375937 E-mail kflwwoml@bgeiuujl.com

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of Integrator Login... 5 Option

More information

AD_Integrations 4me, ITRP - Active Directory Import

AD_Integrations 4me, ITRP - Active Directory Import AD_Integrations 4me, ITRP - Active Directory Import Creator: techwork data gmbh - Georg Leitner-Fidler Job title: Principal consultant Version 1.02 Date: 20/12/2017 techwork automator digitize workflows

More information

All-In-One Cloud-Based Blaster

All-In-One Cloud-Based  Blaster All-In-One Cloud-Based Email Blaster Page 1 Index 04 What is Email Magix 05 How Email Magix Works 06 Email Magix Features 08 Email Design Features 10 Email Campaign Features 13 Autoresponder Features 14

More information

How do I sign up for a Canvas account as a parent?

How do I sign up for a Canvas account as a parent? How do I sign up for a Canvas account as a parent? Parents (Observers) can link their Canvas account to their student's account so they can see assignment dues dates, announcements, and other course content.

More information

Goad Portal. Quick Start Guide

Goad Portal. Quick Start Guide Quick Start Guide Contents 1 Introduction 2 2 Setting up your password and your first login 2 3 Searching for and opening a plan 3 3.1 Quick Plan Search 3 4 Generating a PDF ready for printing 4 4.1 Selecting

More information

SOAP API Guide V2.5 October 2017

SOAP API Guide V2.5 October 2017 V2.5 October 2017 Introduction Contents Introduction... 4 Getting started... 5 Request... 6 Successful response... 6 Sample request XML:... 7 Sample response XML:... 8... 9 CancelQueuedEshotSend... 9 CreateHtmlUploadEmailDraft...

More information

Introduction to Qualtrics Research Suite Wednesday, September 19, 2012

Introduction to Qualtrics Research Suite Wednesday, September 19, 2012 Logging in to Qualtrics Introduction to Qualtrics Research Suite Wednesday, September 19, 2012 1. Open a browser and go to http://www.qualtrics.com 2. If you have a Qualtrics account, use it to login.

More information

Go to the Directory at and click on the Login link.

Go to the Directory at  and click on the Login link. Welcome to Terra Dotta s Study Abroad Directory! Creating your programs for the directory is a simple task. These instructions will outline how to create, activate and update your program brochures. Logging

More information

Creating Oracle Tables ( Lesson 2 )

Creating Oracle Tables ( Lesson 2 ) Creating Oracle Tables ( Lesson 2 ) 2.1 Demo Application During this course we will be using Application Express and Oracle 10g Express Edition to create an application. The application will be used to

More information

Argos. Basic Training

Argos. Basic Training Argos Basic Training Student Information Systems Team 2-4-2019 Contents Overview... 2 Sign in... 2 Navigation... 3 Action Area... 3 Navigation Area... 4 Explorer View... 4 Shortcuts View... 6 Help... 9

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Core Corporate Admin User Manual Release 17.2.0.0.0 Part No. E88573-01 July 2017 Core Corporate Admin User Manual July 2017 Oracle Financial Services Software Limited

More information

PACS. Family & Members. User Guide. pacs1.1

PACS. Family & Members. User Guide. pacs1.1 PACS Family & Members User Guide pacs1.1 Tribal SchoolEdge Level 1, 17 Madden Grove RICHMOND VIC 3121 Support Centre: Web: https://support.schooledge.com.au/ Email: support.schooledge@tribalgroup.com Tel:

More information

SmartFocus Cloud Service APIs

SmartFocus Cloud Service APIs SmartFocus Cloud Service APIs Document name SmartFocus User Guide Service Campaign management for managing email campaigns Protocol SOAP & REST over HTTP Version 11.8 Last updated on June 22, 2015 Table

More information

Column Name Description Data Type

Column Name Description Data Type Contacts Primary data table for contact and lead records. AccountID AccountID from the Accounts Table AnnualRevenue User Input Annual Revenue nvarchar(20) Area User Input Area / Location nvarchar(50) AssistantName

More information

205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop

205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop 205CDE Developing the Modern Web Assignment 2 Server Side Scripting Scenario D: Bookshop Introduction This assignment was written using PHP programming language for interactions with the website and the

More information

Installation & Configuration Guide Enterprise/Unlimited Edition

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

More information

Exostar Identity Access Platform (SAM) User Guide September 2018

Exostar Identity Access Platform (SAM) User Guide September 2018 Exostar Identity Access Platform (SAM) User Guide September 2018 Copyright 2018 Exostar, LLC All rights reserved. 1 INTRODUCTION... 4 SUMMARY... 4 Exostar IAM Platform (SAM) Organization and User Types...

More information

Smile Unrated CDR Export Format

Smile Unrated CDR Export Format Specification and Documentation Edition: 1.1 Release date: October 5, 2015 Smile version: 5.4 Published by Inomial Pty Ltd Suite 801, 620 Bourke St, Melbourne, Vic 3000, Australia www.inomial.com +61 3

More information

LUMINATE ONLINE: FUNDAMENTALS-MANAGING CONSTITUENTS

LUMINATE ONLINE: FUNDAMENTALS-MANAGING CONSTITUENTS Constituent360 is an online database that houses constituent profiles and is the center of all things Luminate Online. Learn how each interaction a constituent has with your organization from registrations,

More information

Advanced Newsletter Getting Started. How to install extension. How to upgrade extension

Advanced Newsletter Getting Started. How to install extension. How to upgrade extension Advanced Newsletter 1.0.0 Getting Started Welcome to the Advanced Newsletter Documentation. Whether you are new or an advanced user, you can find useful information here. Next steps: How to install extension

More information

Attaché Server ODBC Installation and User Guide

Attaché Server ODBC Installation and User Guide Attaché Server ODBC Installation and User Guide October 2014 Publication Number Publication Date Product Version Attaché Server version 1.0.0.96 Attaché Software Australia Pty Ltd ACN 002 676 511 ABN 32002676

More information

Learning Objectives. Description. Your AU Expert(s) Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co.

Learning Objectives. Description. Your AU Expert(s) Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co. PL17257 JavaScript and PLM: Empowering the User Trent Earley Behlen Mfg. Co. Shane Wemhoff Behlen Mfg. Co. Learning Objectives Using items and setting data in a Workspace Setting Data in Related Workspaces

More information

Body: JSON Message representing a Transaction object (See Transaction Objects for Details)

Body: JSON Message representing a Transaction object (See Transaction Objects for Details) Overview SixthCents API is REST based and exposes HTTP endpoints. The API has several URLs and all responses are standard HTTP codes so you easily know what the outcome of an operation was. Authentication

More information

NIELSEN API PORTAL USER REGISTRATION GUIDE

NIELSEN API PORTAL USER REGISTRATION GUIDE NIELSEN API PORTAL USER REGISTRATION GUIDE 1 INTRODUCTION In order to access the Nielsen API Portal services, there are three steps that need to be followed sequentially by the user: 1. User Registration

More information

Ezypay Recurring Billing Integration 0. Documentation. Recurring Billing Integration

Ezypay Recurring Billing Integration 0. Documentation. Recurring Billing Integration Ezypay Recurring Billing Integration 0 Documentation Recurring Billing Integration Ezypay Recurring Billing Integration 1 Contents Introduction... 2 Authentication... 2 HTTP Status Codes... 3 Error Messages...

More information

Fraud prevention with ACI ReD Shield Integration Guide

Fraud prevention with ACI ReD Shield Integration Guide Fraud prevention with ACI ReD Shield Integration Guide Version 6.2.1 As of: 04.10.2016 Table of Contents About ACI ReD Shield... 4 General information about ACI ReD Shield... 4 ACI ReD Shield Additional

More information

Activenet NBN Internet Disconnection

Activenet NBN Internet Disconnection Activenet NBN Internet Disconnection Work Instructions Version 0.2 Issue Date: TBA Created by: Vinay Sharma Reviewed by: Marc Demandante Approved by: Mick Dovile 40 English St, Essendon Fields VIC 3041

More information

NHSmail TANSync Overview

NHSmail TANSync Overview NHSmail TANSync Overview November 207 Version 3.0 Contents Purpose of Document 3 2 Overview of Solution 3 3 Non-Functional Specification 5 3. Hardware Specification 5 3.2 Software Specification 5 3.3 Security

More information

ONLINE REGISTRATION FORMS

ONLINE REGISTRATION FORMS ONLINE REGISTRATION FORMS Table of Contents Online Registration Forms... 1 About the Manual... 4 Audience... 4 Purpose... 4 Authorship... 4 Introduction to Online forms:-... 6 Single User Subscription

More information

USER GUIDE FOR THE MOBILE APP

USER GUIDE FOR THE MOBILE APP System Galaxy Quick Guide INSTALLATION AND USER INTERFACE GALAXY DoorPoint SG 10.4.8 (or higher) 1ST EDITION USER GUIDE FOR THE MOBILE APP FEB 2016 Galaxy DoorPoint Mobile App User Guide Page 2 Galaxy

More information

OmniPort Integration API Requirements Specification

OmniPort Integration API Requirements Specification OmniPort Integration API Requirements Specification FOR RETAILER USE ONLY Date 29.11.2016 Version 1.0 1. Contents 1. Introduction 2 2. General Overview 2 2.1. Scope 2 2.2. System Context 2 3. System Requirements

More information

You can use Dreamweaver to build master and detail Web pages, which

You can use Dreamweaver to build master and detail Web pages, which Chapter 1: Building Master and Detail Pages In This Chapter Developing master and detail pages at the same time Building your master and detail pages separately Putting together master and detail pages

More information

Exostar Identity Access Platform (SAM) User Guide July 2018

Exostar Identity Access Platform (SAM) User Guide July 2018 Exostar Identity Access Platform (SAM) User Guide July 2018 Copyright 2018 Exostar, LLC All rights reserved. 1 Version Impacts Date Owner Identity and Access Management Email Verification (Email OTP) July

More information

Additionally, you may be able to change your password and enter challenge questions to be used if you forget your username or password.

Additionally, you may be able to change your password and enter challenge questions to be used if you forget your username or password. Page 1 of 6 My Account Use the My Account option to view your account data. Your account data includes your user name, address, email address, and the last date and time that you accessed Home Access Center.

More information

MyClinic. Password Reset Guide

MyClinic. Password Reset Guide MyClinic Password Reset Guide Content Retrieving your username Retrieving your password using security question Retrieving your password without remembering login credentials Retrieving your password using

More information

elearning User Guide Version SEPTEMBER A step by step guide to using the dumonde e-learning website

elearning User Guide Version SEPTEMBER A step by step guide to using the dumonde e-learning website elearning User Guide Version 2.0 A step by step guide to using the dumonde e-learning website www.dumonde.com.au 2017 SEPTEMBER 100 / 668 Bourke Street, Melbourne VIC 3000 1300 940 967 www.dumonde.com.au

More information

Magento 2 User Guide March 11, 2018

Magento 2 User Guide March 11, 2018 Magento 2 User Guide March 11, 2018 Getting Started Logging in to your Magento 2 Admin Panel Once your account has been set up, you can access the Plugin through your Internet browser. To log in: 1. Use

More information

Albridge Integration User Guide

Albridge Integration User Guide Albridge Integration User Guide Copyright 1998-2006, E-Z Data, Inc. All Rights Reserved. No part of this documentation may be copied, reproduced, or translated in any form without the prior written consent

More information

Technical Notes. ClearWeigh on SQL Server

Technical Notes. ClearWeigh on SQL Server Newcastle Weighing Services Pty. Ltd. Newcastle Weighing Services Pty. Ltd. Phone (02) 4961 4554 104-114 Hannell Street, Email support@nws.com.au Wickham, NSW. 2293 Web www.nws.com.au/it Technical Notes

More information

FastStats Integration

FastStats Integration Guide Improving results together 1 Contents Introduction... 2 How a campaign is conducted... 3-5 Configuring the integration with PureResponse... 4-17 Using Cascade with the PureResponse platform... 17-10

More information

HCA Tech Note 500. HCA Cloud Account (as of 29-May-2017) Do I need a Cloud Account?

HCA Tech Note 500. HCA Cloud Account (as of 29-May-2017) Do I need a Cloud Account? HCA Cloud Account (as of 29-May-2017) Running on a computer in your home, HCA controls devices and executes schedules and programs. And at one time that is all there was. Everything resided in the home.

More information

Server - The Tigo platform and urls associated with the api Client - Third party user with api access to the Tigo platform and/or Tigo api.

Server - The Tigo platform and urls associated with the api Client - Third party user with api access to the Tigo platform and/or Tigo api. Tigo REST API V3 Introduction This api is used to work with the Tigo Energy platform to automate the retrieval and creation of elements. It will attempt to adhere to standard REST calls found in most REST

More information

Text Input and Conditionals

Text Input and Conditionals Text Input and Conditionals Text Input Many programs allow the user to enter information, like a username and password. Python makes taking input from the user seamless with a single line of code: input()

More information

How To. Create a Free Autoresponder Using

How To. Create a Free Autoresponder Using How To Create a Free Autoresponder Using by michael@myaimbot.com Legal Notice: This ebook is copyright protected. This is only for personal use. You cannot amend, distribute, sell, use, quote or paraphrase

More information

OSCE/ODIHR Election Expert Database. User s Manual

OSCE/ODIHR Election Expert Database. User s Manual OSCE/ODIHR User s Manual Last update: 26/06/2017 Table of contents 1. What is the OSCE/ODIHR?... 3 2. Account management... 4 2.1 Creating a new account... 4 2.2 Managing your account... 5 2.3 Guideline

More information

X2 1:1 Meeting Scheduler Quick Start Guide

X2 1:1 Meeting Scheduler Quick Start Guide X2 1:1 Meeting Scheduler Quick Start Guide This document will provide the necessary information to begin making 1:1 Meeting bookings for the 5th Annual X2 Conference 2018. Remember, 1:1 Meetings are an

More information

Vendor Guide for for Online Self-Registration. egistration

Vendor Guide for for Online Self-Registration. egistration Vendor Guide for for Online Self-Registration egistration Vendors Manual Compiled By: Bayajula (PTY) LTD Issue No: 1 (2016.06.13) 1 2016-07-08 Table of Contents 1. COURSE OVERVIEW... 3 1.1. Purpose...

More information

Lead API Guide Version Lead API Guide. Prepared By: John Jackson Date: 25 th January 2018 Version: 1.50 Release

Lead API Guide Version Lead API Guide. Prepared By: John Jackson Date: 25 th January 2018 Version: 1.50 Release Lead API Guide Prepared By: John Jackson Date: 25 th January 2018 Version: 1.50 Release Page! 1 of 8! Introduction This API allows the reading or deletion of leads. The request is made by making a HTTP

More information