API Technical Reference

Size: px
Start display at page:

Download "API Technical Reference"

Transcription

1 API Technical Reference Copyright 1996/2015, Quality System Solutions Limited Unit 8 Lansdowne Court Bumpers Way, Chippenham, Wiltshire, SN13 0RP United Kingdom Tel: +44 (0) support@callprocrm.com Web:

2 Contents 1. Creating a new account Adding contact history Updating existing accounts Updating existing contacts Exporting account details Reporting CallPro CRM tables and fields

3 1. Creating a new account New accounts can be created from an external program by submitting xml via a POST http request: <path to CallPro CRM installation>/api.php?mode=import&hash=<hash> Parameters <hash> is a md5 hash of the CallPro CRM login username concatenated with a colon and the user password. This can be found by going to the menu option Setup/User-profiles. Click on a name, then click the View button for Advanced, the hash is displayed at the top of the screen. The xml is submitted in a post variable called xml There is only a return value if an error occurred. Example XML <?xml version="1.0"?> <importdata> <area>001</area> <data> <notify>admin@company.com</notify> <account> <field table="telrcm" field="company">test Industries</field> <field table="telrcm" field="postcode">aa01 0AA</field> <field table="telrcm" field="telephone"> </field> <field table="telrcm" field="customerstatus">not called</field> <field table="telrcm" field="owner">new data</field> <field table="rcmanl" field="anal01">25</field> </account> <field table="cont" field="contact">test 1</field> <field table="cont" field=" ">test@a.com</field> <field table="cont" field="contact">test 2</field> <field table="cont" field=" ">test@aa.com</field> </data> <data> </data> </importdata> <field table="cont" field="contact">test 3</field> <field table="cont" field=" ">test@aaa.com</field> <notify>admin@company.com</notify> <account> <field table="telrcm" field="company">test2 Industries</field> <field table="telrcm" field="postcode">aa01 0AA</field> <field table="telrcm" field="telephone"> </field> <field table="telrcm" field="customerstatus">not called</field> <field table="telrcm" field="owner">new data</field> <field table="rcmanl" field="anal01">25</field> </account> <field table="cont" field="contact">test 11</field> <field table="cont" field=" ">test@a.com</field> <field table="cont" field="contact">test 22</field> <field table="cont" field=" ">test@aa.com</field> <field table="cont" field="contact">test 33</field> <field table="cont" field=" ">test@aaa.com</field> 3

4 Note: The Notify tag used in example can be used to send an or CallPro CRM message to users. Multiple tags are supported (add each CallPro CRM User or address on a newline), so you can and message several people at once. If the notify value contains sign, it is presumed to be a valid address, otherwise an CallPro CRM user. Example PHP Script Note: This is only an example of how the api can be used from a PHP script. Actual script will depend on user implementation requirements. <?php /**************************************************************** Creating new accounts via the CallPro CRM API example ****************************************************************/ //example data $notify = "CallProCRMuser1"; //$notify = "user1@callprocrm.com"; $company = "Silver Industries2"; $postcode = "AA01 0AA"; $telephone = " "; $name = "John Smith"; $ = "john.smith@jsindustries.co.uk"; $customerstatus = "Not called"; $owner = "New data"; $employees = "25"; //To update an record ensure that the account number is provided //$accountno = "12345"; //to insert data into the system we need a username and password $hash = "1debf279286ed ccd7b843f04a"; //define what area to insert to $area = "001"; //creating the xml document $doc = new DOMDocument('1.0'); $doc->formatoutput = true; //everything is contained in the import data tag $importdata = $doc->createelement("importdata"); $doc->appendchild($importdata); //Element for target area $area = $doc->createelement("area",$area); $importdata->appendchild($area); //Create data tag $data = $doc->createelement("data"); //Create Notify element $notify = $doc->createelement("notify",$notify); $data->appendchild($notify); $importdata->appendchild($data); //Create account tag $account = $doc->createelement("account"); //Create account number if using custom number, uncomment 2 lines below //$accountno = $doc->createelement("accountno",$accountno); //$account->appendchild($accountno); //Create account elements $j = $doc->createelement("field",$company); $j->setattribute("table", "TELRCM"); $j->setattribute("field", "COMPANY"); $account->appendchild($j); $j = $doc->createelement("field",$postcode); $j->setattribute("table", "TELRCM"); $j->setattribute("field", "POSTCODE"); $account->appendchild($j); $j = $doc->createelement("field",$telephone); $j->setattribute("table", "TELRCM"); $j->setattribute("field", "TELEPHONE"); $account->appendchild($j); $j = $doc->createelement("field",$customerstatus); $j->setattribute("table", "TELRCM"); $j->setattribute("field", "CUSTOMERSTATUS"); $account->appendchild($j); $j = $doc->createelement("field",$owner); $j->setattribute("table", "TELRCM"); $j->setattribute("field", "OWNER"); $account->appendchild($j); $j = $doc->createelement("field",$employees); $j->setattribute("table", "RCMANL"); $j->setattribute("field", "ANAL30"); 4

5 $account->appendchild($j); $data->appendchild($account); //Create contact elements. //Can have more than one contact $contact = $doc->createelement("contact"); $k = $doc->createelement("field",$name); $k->setattribute("table", "CONT"); $k->setattribute("field", "CONTACT"); $contact->appendchild($k); $k = $doc->createelement("field",$ ); $k->setattribute("table", "CONT"); $k->setattribute("field", " "); $contact->appendchild($k); //To update contact details provide an Contact_ID // $k = $doc->createelement("field",$cid); // $k->setattribute("table", "CONT"); // $k->setattribute("field", "CID"); // $contact->appendchild($k); $data->appendchild($contact); $xml = $doc->savexml(); //Change this to the long url of your system, if unsure what this is please //ask support $url = " $hash; //start curl $ch = curl_init(); //set the url, number of POST vars, POST data $data = array("xml" => $xml); curl_setopt($ch,curlopt_url, $url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); //execute post $result = curl_exec($ch); //close curl connection curl_close($ch); echo $result;?> Parameters for the Creating New Account code can be passed from a web form. A simple example of the web form would be. <form action="includes/cpcupload.php" method="post" enctype="multipart/form-data"> <input name="name" type="text">name<br> <input name=" " type="text"> <br> <input type="submit"> </form> The php code, cpcupload.php in the above example, would retrieve the name and values into the $contact and $ variables $contact = $_POST['name']; $ = $_POST[' ']; On Submit, cpcupload.php will create the request and send to CallPro CRM. A new record will be created automatically. If the Notify field is used then either an internal message will be sent to the CallPro CRM user and/or to the notification address. 5

6 1. Adding contact history Contact history can be created by simply adding an activity and optionally comments. Example PHP code $f = $doc->createelement("field", Web Submission ); $f->setattribute("table", "SPECIAL"); $f->setattribute("field", "ACTIVITY"); $r->appendchild($f); $f = $doc->createelement("field", This account was created by a web submission ); $f->setattribute("table", "SPECIAL"); $f->setattribute("field", "COMMENTS"); $r->appendchild($f); 2. Updating existing accounts To update an existing account simply add to the XML post data specifying the CallPro CRM account number to update within the account tags: <accountno> </accountno> If no contact details are provided then only the account information will be updated. 3. Updating existing contacts To update an existing contact simply add to the XML post data specifying the CallPro CRM contactid to update: <field table="cont" field="cid">1234</field> <field table="cont" field="contact">test 33</field> <field table="cont" field=" ">test@aaa.com</field> 6

7 4. Exporting account details Account information can be retrieved by a simple GET http request: <path to CallPro CRM installation>/api.php?mode=export&hash=<hash>&account=<account>&area=<area> Parameters <hash> is a md5 hash of an CallPro CRM login username concatenated with a colon and the user password. This can be found by going to the menu option Setup/User-profiles. Click on a name, then click the View button for Advanced, the hash is displayed at the top of the screen. <account> is the CallPro CRM account number to retrieve data for. <area> is the database area number where the account is located in. An optional extra parameter is project which is applicable if multiple projects is enabled in the Database Area. Example response <?xml version="1.0"?> <TELRCM> <ACCOUNT>034</ACCOUNT> <COMPANY>Electronics</COMPANY> <ADDRESS1>2 Grafton Road</ADDRESS1>... </TELRCM> <RCMANL> <ACCOUNT>034</ACCOUNT> <LINE>1</LINE> <COMPANY></COMPANY> <ANAL01></ANAL01>... <ANAL58></ANAL58> <ANAL59></ANAL59> <ANAL60></ANAL60> </RCMANL> <CONT> <ACCOUNT>034</ACCOUNT> <CONTACT>Bill</CONTACT> <SALUTATION>Mr Bill</SALUTATION>... </CONT> <CONT> <ACCOUNT>034</ACCOUNT> <CONTACT>John Smith</CONTACT>... </CONT> 7

8 5. Reporting Reports can be accessed in either CSV, XML or Excel formats using a simple URL: <path to CallPro CRM installation>/api.php?mode=report&hash=<hash>&type=<report type>&name=<report name>&format=<format> Parameters <type> can either be SQL or RW dependant if the report is SQL report or a report writer report. <name> is the name of the report. <format> is either csv, xml or excel. If omitted or an unknown format is used, CallPro CRM will output a CSV file. 8

9 6. CallPro CRM tables and fields TELRCM (Account Information) ACCOUNT COMPANY ADDRESS1 ADDRESS2 ADDRESS3 ADDRESS4 POSTCODE COUNTRY TELEPHONE FAX NEXTDATE LASTDATE FIRSTDATE NOTE DISCOUNT USERNAME OWNER ACSTATUS CUSTOMERSTATUS SUBSTATUS STATUSDATE SALESMAN PROJECT TIMEST WWW LASTUSER SAVEDATE ADDNOTE text varchar(25) varchar(25) varchar(25) varchar(100) text CONT (Contact Information) ACCOUNT CONTACT SALUTATION POSN COMPANY MEMO TYPE_ PRIMARY_ NEXTDATE ADDN01... ADDN60 FIRSTNAME OWNER STATUS SUBSTATUS TITLE SURNAME INITIALS text varchar(1) varchar(30) varchar(25) varchar(25) 9

10 TELEPHONE FAX ADDRESS1 ADDRESS2 ADDRESS3 ADDRESS4 POSTCODE COUNTRY MOBILE CID SAVEDATE varchar(100) varchar(15) int(11) RCMANL (Additional Fields) ACCOUNT ANAL01 ANAL60 varchar(100) varchar(100) 10

API USER GUIDE MARKETING MESSAGES & BROADCASTS

API USER GUIDE MARKETING MESSAGES & BROADCASTS API USER GUIDE MARKETING MESSAGES & BROADCASTS General Overview So, what do you want to do? 3 3 Marketing Messages with replies 4 First, let s send the messages Advanced API developers note Next, let s

More information

Connect Media Bulk SMS API Documentation

Connect Media Bulk SMS API Documentation Connect Media Bulk SMS API Documentation All requests are submitted through the POST Method Base URL: http://www.connectmedia.co.ke/user-board/?api Information About Parameters: PARAMETERS username Your

More information

API Spec Sheet For HLR v1.4

API Spec Sheet For HLR v1.4 API Spec Sheet For HLR v1.4 INTRODUCTION The Wholesale SMS HLR API provides an easy to use method of accessing the HLR (Home Location Register) for all networks worldwide that support HLR. For large batch

More information

SMS GATEWAY API INTEGRATION GUIDE

SMS GATEWAY API INTEGRATION GUIDE SMS GATEWAY API INTEGRATION GUIDE For PHP Developers Are you a developer or bulk SMS reseller? You can interface your application, website or system with our 247 reliable messaging gateway by using our

More information

API Spec Sheet For Version 2.5

API Spec Sheet For Version 2.5 INTRODUCTION The Wholesale SMS API is ideally suited for sending individual sms messages and/or automated responses through our premium routes. To send bulk messages through the API you can set your server

More information

SMS Gateway. API & Application Technical Documentation. Revision 1. Current as at 10 th August Document ID: DOC-SMS-API-R1

SMS Gateway. API & Application Technical Documentation. Revision 1. Current as at 10 th August Document ID: DOC-SMS-API-R1 SMS Gateway API & Application Technical Documentation Revision 1 Current as at 10 th August 2010 Document ID: DOC-SMS-API-R1 Information in this document is subject to change without notice. This document

More information

<tr><td>last Name </td><td><input type="text" name="shippingaddress-last-name"

<tr><td>last Name </td><td><input type=text name=shippingaddress-last-name // API Setup Parameters $gatewayurl = 'https://secure.payscout.com/api/v2/three-step'; $APIKey = '2F822Rw39fx762MaV7Yy86jXGTC7sCDy'; // If there is no POST data or a token-id, print the initial Customer

More information

ARTIO SMS Services HTTP API Documentation

ARTIO SMS Services HTTP API Documentation ARTIO SMS Services HTTP API Documentation David Jozefov Michal Unzeitig Copyright 2013 - ARTIO International Co. ARTIO SMS Services HTTP API Documentation ARTIO Publication date: 4.9.2013 Version: 1.0.1

More information

XML API Developer-Documentation Version 2.01

XML API Developer-Documentation Version 2.01 XML API Developer-Documentation Version 2.01 07/23/2015 1 Content Introduction...4 Who needs this information?...4 S-PAY Testing Environment...4 URL to our API...4 Preparation...5 Requirements...5 API

More information

SortMyBooks API (Application programming

SortMyBooks API (Application programming SortMyBooks API (Application programming interface) Welcome to Sort My Books. This documentation will help you to get started with SortMyBooks API. General Considerations SortMyBooks works with objects

More information

WebADM and OpenOTP are trademarks of RCDevs. All further trademarks are the property of their respective owners.

WebADM and OpenOTP are trademarks of RCDevs. All further trademarks are the property of their respective owners. API The specifications and information in this document are subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise noted. This document may

More information

Integration REST Text2Speech Version 1.1

Integration REST Text2Speech Version 1.1 1 Integration REST Text2Speech Version 1.1 2 Table of Contents Introduction P. 3 Technical Platform Request for shipments voicemails P. 4 JSON request P. 4 Example request CURL P. 5 Sample PHP request

More information

2. On completing your registration you will get a confirmation . Click on the link or paste the link into your browser to validate the account.

2. On completing your registration you will get a confirmation  . Click on the link or paste the link into your browser to validate the account. Bongo Live SMS API v1.4 Revision History: v 1.1 - Initial Release. v1.2 19/6/2013 - Added Balance check and Sender Name Check v1.3 15/10/2013 Added incoming sms specifications v1.4 13/05/2014 Added API

More information

PrintShop Mail Web. Web Integration Guide

PrintShop Mail Web. Web Integration Guide PrintShop Mail Web Web Integration Guide Copyright Information Copyright 1994-2010 Objectif Lune Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored

More information

InstaMember USER S GUIDE

InstaMember USER S GUIDE InstaMember USER S GUIDE InstaMember Licensing API Guide 1 InstaMember Licensing API Guide The InstaMember licensing feature is designed to integrate seamlessly with your web applications or scripts. It

More information

API LEADFOX TECHNOLOGY INC. By Sébastien Lamanna. Created on January 6, 2016

API LEADFOX TECHNOLOGY INC. By Sébastien Lamanna. Created on January 6, 2016 API By Sébastien Lamanna LEADFOX TECHNOLOGY INC. Created on January 6, 2016 Latest update February 9, 2016 Revisions History Version By Date 1.0 1.1 Initial version Sébastien Lamanna Jan. 6, 2016 Add Contact/GetHistory

More information

LIPNET OUTBOUND API FORMS DOCUMENTATION

LIPNET OUTBOUND API FORMS DOCUMENTATION LIPNET OUTBOUND API FORMS DOCUMENTATION LEGAL INAKE PROFESSIONALS 2018-03-0926 Contents Description... 2 Requirements:... 2 General Information:... 2 Request/Response Information:... 2 Service Endpoints...

More information

Sending Documents to Tenstreet API Guide (rev 06/2017)

Sending Documents to Tenstreet API Guide (rev 06/2017) Sending Documents to Tenstreet API Guide (rev 06/2017) Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy... 2 Support

More information

emag Marketplace API Implementation Best Practices v1.0

emag Marketplace API Implementation Best Practices v1.0 emag Marketplace API Implementation Best Practices v1.0 17.03.2015 Version Date modified Changes 1.0 12.02.2015 First draft Table of Contents 1. General guidelines for authentication... 2 2. Maximum size

More information

ITS331 IT Laboratory I: (Laboratory #11) Session Handling

ITS331 IT Laboratory I: (Laboratory #11) Session Handling School of Information and Computer Technology Sirindhorn International Institute of Technology Thammasat University ITS331 Information Technology Laboratory I Laboratory #11: Session Handling Creating

More information

Remote API V1.1 Documentation

Remote API V1.1 Documentation Remote API V1.1 Documentation Disclaimer: This manual is licensed under Cellunlocker.net. The information contained in these materials is proprietary and confidential to Cellunlocker.net and/or its subsidiaries

More information

Backup Gateway Documentation

Backup Gateway Documentation Backup Gateway Documentation Written by Jateen Mistry Revised: 18 th May 2004, Revised: 29 th May 2004 [Adam Beaumont] SUPPORT: For support related issues please logon to the support forum at http://aqcorporate.com/support.php

More information

Sending Data Updates to Tenstreet API Guide (rev 10/2017)

Sending Data Updates to Tenstreet API Guide (rev 10/2017) Sending Data Updates to Tenstreet API Guide (rev 10/2017) Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy... 2 Support

More information

HTTPS API Specifications

HTTPS API Specifications HTTPS API Specifications June 17, 2016 P a g e 1 - HTTPS API Specifications Contents HTTPS API Overview... 3 Terminology... 3 Process Overview... 3 Parameters... 4 Responses... 5 Examples... 6 PERL on

More information

Sending Job Requsition Data to Tenstreet API Guide (rev 09/2018)

Sending Job Requsition Data to Tenstreet API Guide (rev 09/2018) Sending Job Requsition Data to Tenstreet API Guide (rev 09/2018) Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy...

More information

Recharge API Document

Recharge API Document Recharge API Document API Methods 1. GetBalance 2. MobileRecharge 3. DTHRecharge 4. PostPaidBillPay 5. GetTransactionStatus 6. ChangeSMSPin 7. ComplaintRegister API URL http:// DomainName /mrechargeapi/service.asmx

More information

References webharvy mysql

References webharvy mysql References 1. https://www.dfki.de/web/research/publications/renamefilefordownload?...25... 2. MK Dalal, MA Zaveri - Applied computational intelligence and soft, 2014 - dl.acm.org 3. http://www.aclweb.org/anthology/w10-3209

More information

INTRODUCTION PROCEDURES FOR BOOKING WHAT IFS

INTRODUCTION PROCEDURES FOR BOOKING WHAT IFS Booker Guide 1 INTRODUCTION The GroundScope system provides clients with a corporate branded portal to book ground transportation globally. Supported by a 24-7 Support Centre, the portal enables employees

More information

Click 2 Call. All rights reserved to Voicenter Revision

Click 2 Call. All rights reserved to Voicenter Revision Click Call . Click Call Click Call enables executing direct phone calls, with just the click of a button. It s super easy to implement and integrate, using our ready-to-use code. This great and versatile

More information

Discussion #4 CSS VS XSLT. Multiple stylesheet types with cascading priorities. One stylesheet type

Discussion #4 CSS VS XSLT. Multiple stylesheet types with cascading priorities. One stylesheet type Discussion #4 CSS VS XSLT Difference 1 CSS Multiple stylesheet types with cascading priorities XSLT One stylesheet type Difference 2 Used for HTML Used for structured document Difference 3 Only client

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

API DOCUMENTATION INDODAX.COM

API DOCUMENTATION INDODAX.COM API DOCUMENTATION INDODAX.COM v1.8 Last updated: 9 April 2018 Table of Contents Public API 3 Private API 3 Authentication 4 Responses 4 API Methods 5 getinfo 5 transhistory 6 trade 7 tradehistory 8 openorders

More information

API. If you already done integration with Btc-e.com previously, it will be very easy task to use our API.

API. If you already done integration with Btc-e.com previously, it will be very easy task to use our API. API Documentation Link : https://vip.bitcoin.co.id/trade api Our API is very similar with BTC-e s API. If you already done integration with Btc-e.com previously, it will be very easy task to use our API.

More information

Automatic system alerts on Primo or, How to respond to a system outage in your sleep

Automatic system alerts on Primo or, How to respond to a system outage in your sleep Automatic system alerts on Primo or, How to respond to a system outage in your sleep Deborah Fitchett Library, Teaching and Learning, Lincoln University The problem The solution Step 1 System status http://status.exlibrisgroup.com/

More information

ONE SOCIAL. A Writing Project. Presented to. The Faculty of the Department of Computer Science. San José State University

ONE SOCIAL. A Writing Project. Presented to. The Faculty of the Department of Computer Science. San José State University ONE SOCIAL A Writing Project Presented to The Faculty of the Department of Computer Science San José State University In Partial Fulfillment of the Requirements for the Degree Master of Computer Science

More information

Princess Nourah bint Abdulrahman University. Computer Sciences Department

Princess Nourah bint Abdulrahman University. Computer Sciences Department Princess Nourah bint Abdulrahman University Computer Sciences Department 1 And use http://www.w3schools.com/ PHP Part 3 Objectives Creating a new MySQL Database using Create & Check connection with Database

More information

RESTful API Specification

RESTful API Specification RESTful API Specification Contents Creating Group Conference Getting Group Conference Editing Group Conference Deleting Group Conference Getting List of Group Conference Getting User Address Book Adding

More information

PHP 5 if...else...elseif Statements

PHP 5 if...else...elseif Statements PHP 5 if...else...elseif Statements Conditional statements are used to perform different actions based on different conditions. PHP Conditional Statements Very often when you write code, you want to perform

More information

Errors Message Bad Authentication Data Code 215 User_timeline

Errors Message Bad Authentication Data Code 215 User_timeline Errors Message Bad Authentication Data Code 215 User_timeline ("errors":(("code":215,"message":"bad Authentication data. "))) RestKit.ErrorDomain Code=- 1011 "Expected status code in (200-299), got 400"

More information

WebMatrix: Why PHP Developers Should Pay Attention

WebMatrix: Why PHP Developers Should Pay Attention WebMatrix: Why PHP Developers Should Pay Attention Gone are the days when PHP developers had to turn away business because the clients used Windows Servers. If you are a PHP developer and have been looking

More information

Welcome to the C3 Training Database, brought to you by the Construction Career Collaborative!

Welcome to the C3 Training Database, brought to you by the Construction Career Collaborative! C3 Training Database Contractor User Manual 12/06/2017 Welcome to the C3 Training Database, brought to you by the Construction Career Collaborative! The training database will help you keep track of your

More information

User Manual. SmartLite WebQuiz SQL Edition

User Manual. SmartLite WebQuiz SQL Edition User Manual SmartLite WebQuiz SQL Edition SmartLite WebQuiz SQL All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

SMS+ Client User Manual

SMS+ Client User Manual SMS+ Client User Manual Route Mobile Limited. 2018. All Right Reserved. 1 Table of Contents INTRODUCTION... 3 LOGIN... 4 Login:... 4 Dashboard... 8 SEND SMS... 10 Single SMS:... 11 Bulk SMS:... 12 Personalized

More information

Table of Contents. Page 1

Table of Contents. Page 1 Table of Contents Logging In... 2 Adding Your Google API Key... 2 Project List... 4 Save Project (For Re-Import)... 4 New Project... 6 NAME & KEYWORD TAB... 6 GOOGLE GEO TAB... 6 Search Results... 7 Import

More information

NSEMFUA Technical Documentation

NSEMFUA Technical Documentation NSEMFUA Technical Documentation HTTP Application Programming Interface SMPP specifications Page 1 Contents 1. Introduction... 3 2. HTTP Application Programming Interface... 4 2.1 Introduction... 4 2.2

More information

Sending SMS using Hapaweb s platform

Sending SMS using Hapaweb s platform Sending SMS using Hapaweb s platform 1. You can send messages to: a. just one person using the Single SMS feature b. To a large number of people - using the Bluk SMS feature c. To a group of people in

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

STEP-BY-STEP GUIDE TO E-FILING OF QUARTERLY STATEMENT BY HOUSEHOLD EMPLOYERS

STEP-BY-STEP GUIDE TO E-FILING OF QUARTERLY STATEMENT BY HOUSEHOLD EMPLOYERS STEP-BY-STEP GUIDE TO E-FILING OF QUARTERLY STATEMENT BY HOUSEHOLD EMPLOYERS 1. Introduction You want to submit your quarterly Statement by Household Employers on the Mauritius Revenue Authority s website,

More information

SELLER ADMINISTRATION PANEL API

SELLER ADMINISTRATION PANEL API Dotpay Technical Support Wielicka Str. 72, 30-552 Cracow, Poland phone. +48 12 688 26 00 fax +48 12 688 26 49 e-mail: tech@dotpay.pl SELLER ADMINISTRATION PANEL API Version 1.35.4.2 TABLE OF CONTENT Page

More information

Club User Manual Version 15 Preliminary Release, Jan 2005

Club User Manual Version 15 Preliminary Release, Jan 2005 Email Club User Manual Version 15 Preliminary Release, Jan 2005 Copyright 1989-2005 Action Systems, Incorporated All Rights Reserved First Edition January, 2005 RESTAURANT MANAGER is a registered trademark

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

BACKGROUND POST USER S GUIDE. 2012, CCBILL, LLC.; V.8,; Page 1 of 10

BACKGROUND POST USER S GUIDE. 2012, CCBILL, LLC.; V.8,; Page 1 of 10 BACKGROUND POST USER S GUIDE 2012, CCBILL, LLC.; V.8,; 05072012 Page 1 of 10 CONTENTS Introduction... 3 Overview... 3 Passing Variables to the Signup Form... 3 Approval and Denial Posts... 5 Variables...

More information

OXYGEN GROUP. mycrm Technology. Interfacing with the mycrm API. engage

OXYGEN GROUP. mycrm Technology. Interfacing with the mycrm API. engage mycrm Technology Interfacing with the engage Introduction The mycrm in Engage is used to store mobile numbers and related customer data. By using the mycrm database, a client can load a wealth of information

More information

Creating an Online Catalogue Search for CD Collection with AJAX, XML, and PHP Using a Relational Database Server on WAMP/LAMP Server

Creating an Online Catalogue Search for CD Collection with AJAX, XML, and PHP Using a Relational Database Server on WAMP/LAMP Server CIS408 Project 5 SS Chung Creating an Online Catalogue Search for CD Collection with AJAX, XML, and PHP Using a Relational Database Server on WAMP/LAMP Server The catalogue of CD Collection has millions

More information

The Ethic Management System (EMS) User guide

The Ethic Management System (EMS) User guide The Ethic Management System (EMS) User guide On the web browser, type the URL link: https://www.witsethics.co.za Click on Login (on right corner of top menu bar) to access the Ethics Management System

More information

Documentation of Clubdata

Documentation of Clubdata Documentation of Clubdata Autor: Franz Domes Version: 1.0 Datum: 10. Oct. 2004 Table of content 1 Overview...3 1.1 Features...3 2 Concepts...4 2.1 MemberID...4 2.2 User versus Member...4 2.3 Membership

More information

Slybroadcast Global API Documentation Version 3.0 June 2018

Slybroadcast Global API Documentation Version 3.0 June 2018 Slybroadcast Global API Documentation Version 3.0 June 2018 MobileSphere 7 Faneuil Hall Marketplace, 4 th Floor Boston, MA 617.399.9980 1 Slybroadcast API 1. MobileSphere s slybroadcast API MobileSphere

More information

PHP: File upload. Unit 27 Web Server Scripting L3 Extended Diploma

PHP: File upload. Unit 27 Web Server Scripting L3 Extended Diploma PHP: File upload Unit 27 Web Server Scripting L3 Extended Diploma 2016 Criteria M2 M2 Edit the contents of a text file on a web server using web server scripting Tasks We will go through a worked example

More information

Building a Web-based Health Promotion Database

Building a Web-based Health Promotion Database 6 th International Conference on Applied Informatics Eger, Hungary, January 27 31, 2004. Building a Web-based Health Promotion Database Ádám Rutkovszky University of Debrecen, Faculty of Economics Department

More information

PHP Introduction. Some info on MySQL which we will cover in the next workshop...

PHP Introduction. Some info on MySQL which we will cover in the next workshop... PHP and MYSQL PHP Introduction PHP is a recursive acronym for PHP: Hypertext Preprocessor -- It is a widely-used open source general-purpose serverside scripting language that is especially suited for

More information

REST API Operations. 8.0 Release. 12/1/2015 Version 8.0.0

REST API Operations. 8.0 Release. 12/1/2015 Version 8.0.0 REST API Operations 8.0 Release 12/1/2015 Version 8.0.0 Table of Contents Business Object Operations... 3 Search Operations... 6 Security Operations... 8 Service Operations... 11 Business Object Operations

More information

Faculty Web Page Management System. Help Getting Started

Faculty Web Page Management System. Help Getting Started Faculty Web Page Management System Help Getting Started 2 Table of Contents Faculty Web Page Management System...1 Help Getting Started...1 Table of Contents...2 Manage My Personal Information...3 Creating

More information

Brain Corporate Bulk SMS

Brain Corporate Bulk SMS Brain Corporate Bulk SMS W e S i m p l y D e l i v e r! API Documentation V.2.0 F e b r u a r y 2 0 1 9 2 Table of Contents Sending a Quick Message... 3 API Description... 3 Request Parameter... 4 API

More information

Managing Accounts and Logs (Pharos Control)

Managing Accounts and Logs (Pharos Control) Managing Accounts and Logs (Pharos Control) CHAPTERS 1. Manage Accounts 2. Manage Logs This guide applies to: Phaos Control 2.0. This guide introduces how to manage Pharos Control accounts and logs: 1.

More information

Dynamic Form Processing Tool Version 5.0 November 2014

Dynamic Form Processing Tool Version 5.0 November 2014 Dynamic Form Processing Tool Version 5.0 November 2014 Need more help, watch the video! Interlogic Graphics & Marketing (719) 884-1137 This tool allows an ICWS administrator to create forms that will be

More information

2. Software Oracle 12c is installed on departmental server machines.

2. Software Oracle 12c is installed on departmental server machines. 1. Introduction This note describes how to access the Oracle database management system on the departmental computer systems. Basic information on the use of SQL*Plus is included. Section 8 tells you how

More information

Figure 1 - The password is 'Smith'

Figure 1 - The password is 'Smith' Using the Puppy School Booking system Setting up... 1 Your profile... 3 Add New... 4 New Venue... 6 New Course... 7 New Booking... 7 View & Edit... 8 View Venues... 10 Edit Venue... 10 View Courses...

More information

SMS Aggregation - API Documentation

SMS Aggregation - API Documentation SMS Aggregation - API Documentation Wireless Logic Version - 2.0 Issue Date - 20th February 2014 Wireless Logic Ltd Grosvenor House Horseshoe Crescent Beaconsfield, Buckinghamshire HP9 1LJ Tel: +44 (0)1494

More information

Jquery Ajax Json Php Mysql Data Entry Example

Jquery Ajax Json Php Mysql Data Entry Example Jquery Ajax Json Php Mysql Data Entry Example Then add required assets in head which are jquery library, datatable js library and css By ajax api we can fetch json the data from employee-grid-data.php.

More information

TM-800/1000 and TS-700/900 Administrator Manual

TM-800/1000 and TS-700/900 Administrator Manual TM-800/1000 and TS-700/900 Administrator Manual Version 4.0 The RHUB web conferencing and remote support appliance RHUB Communications, Inc. 4340 Stevens Creek Blvd. Suite 282 San Jose, CA 95129 support@rhubcom.com

More information

Messaging Service REST API Specification V2.3.2 Last Modified: 07.October, 2016

Messaging Service REST API Specification V2.3.2 Last Modified: 07.October, 2016 Messaging Service REST API Specification V2.3.2 Last Modified: 07.October, 2016 page 1 Revision history Version Date Details Writer 1.0.0 10/16/2014 First draft Sally Han 1.1.0 11/13/2014 Revised v.1.1

More information

Integration Documentation. Automated User Provisioning Common Logon, Single Sign On or Federated Identity Local File Repository Space Pinger

Integration Documentation. Automated User Provisioning Common Logon, Single Sign On or Federated Identity Local File Repository Space Pinger Integration Documentation Automated User Provisioning Common Logon, Single Sign On or Federated Identity Local File Repository Space Pinger Revision History Version No. Release Date Author(s) Description

More information

Option 4 -- I am a pet owner and do not work at a veterinary clinic.

Option 4 -- I am a pet owner and do not work at a veterinary clinic. Minnesota Urolith Center Online System 2018 Creating an Online Account Overview To access our online submission and results retrieval program your clinic will need to set up a user name and password. Each

More information

Plesk API RPC Protocol

Plesk API RPC Protocol SWsoft Plesk API RPC Protocol Developer's Guide Plesk 8.1 for Unix, Plesk 8.1 for Windows (c) 1999-2007 ISBN: N/A SWsoft. 13755 Sunrise Valley Drive Suite 325 Herndon VA 20171 USA Phone: +1 (703) 815 5670

More information

Sending SMS using PEPJOY INFOTECH platform

Sending SMS using PEPJOY INFOTECH platform Sending SMS using PEPJOY INFOTECH platform 1. You can send messages to: a. just one person using the Single SMS feature b. To a large number of people - using the Bulk SMS feature c. To a group of people

More information

Form Processing in PHP

Form Processing in PHP Form Processing in PHP Forms Forms are special components which allow your site visitors to supply various information on the HTML page. We have previously talked about creating HTML forms. Forms typically

More information

We currently are able to offer three different action types:

We currently are able to offer three different action types: SMS Inbound Introduction SMS Inbound provides a simple to use interface for receiving inbound MMS messages. Inbound Message Actions Inbound Message Actions in SMS Inbound are things that our system can

More information

Zulu edm API Handbook

Zulu edm API Handbook Zulu edm API Handbook Prepared by Wesley Wright 21 st March 2016 Version 1.0 Page 1 of 13 CONTENTS OVERVIEW... 3 API ACCESS... 4 API KEY... 4 LOGIN CREDENTIALS... 4 API REQUEST PARAMETER ORDER... 4 GENERIC

More information

Matrox Monarch HD Control API Guide

Matrox Monarch HD Control API Guide Matrox Monarch HD Control API Guide February 12, 2014 Y11308-301-0113 Trademarks Matrox Electronic Systems Ltd....Matrox, Monarch All other nationally and internationally recognized trademarks and tradenames

More information

Manual for the ISPConfig 3 Billing Module

Manual for the ISPConfig 3 Billing Module Manual for the ISPConfig 3 Billing Module Version 2.0 for ISPConfig 3.1 Author: Till Brehm Last edited on 09/14/2016 1 The ISPConfig 3 Billing Module is an extension for ISPConfig

More information

Payment Center API WEBFORM/GATEWAY MODE v2.6.2

Payment Center API WEBFORM/GATEWAY MODE v2.6.2 Payment Center API WEBFORM/GATEWAY MODE v2.6.2 Content Introduction 3 WebPay (webform) 4 WebBlock (webform) 6 Pay (gateway) 4 Block (gateway) 6 Token (gateway) 6 Charge (webform/gateway) 7 Cancel (webform/gateway)

More information

Managing User Data in Bulk via CSV BSC Health & Safety e-learning Platform

Managing User Data in Bulk via CSV BSC Health & Safety e-learning Platform Managing User Data in Bulk via CSV BSC Health & Safety e-learning Platform Contents Introduction... 1 Creating Accounts... 1 Step One: Creating the CSV file... 1 Step Two: Uploading your data... 4 Updating

More information

MySagePay User Guide

MySagePay User Guide MySagePay User Guide Table of Contents 1.0 Welcome to MySagePay 3 1.1 Logging into MySagePay 3 1.2 What you will see 4 2.0 Settings 5 2.1 My Account 5 2.2 Settings 6 2.3 AVS/CV2 7 2.4 3D Secure 8 2.5 Restrictions

More information

Zend PHP 5.3 Certification Exam.

Zend PHP 5.3 Certification Exam. Zend 200-530 Zend PHP 5.3 Certification Exam TYPE: DEMO http://www.examskey.com/200-530.html Examskey Zend 200-530 exam demo product is here for you to test quality of the product. This Zend 200-530 demo

More information

Gengo API v1 / v1.1 Documentation

Gengo API v1 / v1.1 Documentation Gengo API v1 / v1.1 Documentation For v1 and v1.1 of the Gengo API v1 v1.1 Example API Authenticated Call Callback s Parameter Payloads Job Payload For responses Job Payload For submissions API Methods

More information

Manual For The ISPConfig 3 Billing Module

Manual For The ISPConfig 3 Billing Module Manual For The ISPConfig 3 Billing Module Version 1.0 for ISPConfig 3.0.3.3 Author: Till Brehm Last edited on 06/30/2011 1 The ISPConfig 3 Billing Module is an extension for ISPConfig

More information

You also have the option of being able to automatically delete the document from SharePoint if the Note is deleted within CRM.

You also have the option of being able to automatically delete the document from SharePoint if the Note is deleted within CRM. Overview The SharePoint Integration provides functionality for you to be able to automatically upload documents to a SharePoint site when they are entered as a Note within CRM. Once uploaded to SharePoint,

More information

GoPro Display Tracker Tutorial

GoPro Display Tracker Tutorial GoPro Display Tracker Tutorial Scenario: Store Out of Business User arrives to POP recorded location but the store no longer exists. A. Launch Screen B. Login Screen C. Select Store D. Store Screen E.

More information

Engineering, Built Environment and IT Department of Computer Science MIT C Projects Portal User Manual

Engineering, Built Environment and IT Department of Computer Science MIT C Projects Portal User Manual Engineering, Built Environment and IT Department of Computer Science MIT C Projects Portal User Manual Last Update: 24 August 2017 1 Requesting an Account This section highlights the steps that are required

More information

MySciLEARN Student Update Administrator Guide. For system administrators managing the Fast ForWord and Reading Assistant programs

MySciLEARN Student Update Administrator Guide. For system administrators managing the Fast ForWord and Reading Assistant programs MySciLEARN Student Update Administrator Guide For system administrators managing the Fast ForWord and Reading Assistant programs September 2017 Copyright 1996 through 2017 Scientific Learning Corporation.

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

EMS MASTER CALENDAR Installation Guide

EMS MASTER CALENDAR Installation Guide EMS MASTER CALENDAR Installation Guide V44.1 Last Updated: May 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: Introduction

More information

XTM Connect Drupal Connector. A Translation Management Tool Plugin

XTM Connect Drupal Connector. A Translation Management Tool Plugin XTM Connect Drupal Connector A Translation Management Tool Plugin Published by XTM International Ltd. Copyright XTM International Ltd. All rights reserved. No part of this publication may be reproduced

More information

Yealink Redirection and Provisioning Service (RPS)

Yealink Redirection and Provisioning Service (RPS) Yealink Redirection and Provisioning Service (RPS) I Yealink Yealink Redirection and Provisioning Service (RPS) Contents Contents II Welcome IV Guide for User 1 1 Logging into the RPS 1 To login the RPS

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

BUSINESS ACCOUNT MANAGEMENT SYSTEMS (BAMS) AND TRAVEL MANAGEMENT COMPANIES (BAMS)

BUSINESS ACCOUNT MANAGEMENT SYSTEMS (BAMS) AND TRAVEL MANAGEMENT COMPANIES (BAMS) BUSINESS ACCOUNT MANAGEMENT SYSTEMS (BAMS) AND TRAVEL MANAGEMENT COMPANIES (BAMS) USER GUIDE Contents Contents Contents Contents 2 1. Introduction 3 2. Account Activation 4 3. BAMS 5 3.1 Logon 5 3.2 TMC

More information

Affinity Provider Portal Training Manual

Affinity Provider Portal Training Manual Training Manual Login This page enables a user to either login and/or register if he/she is not already a regstered user (ie. Providers and Staff users). The following are the functionalities which can

More information

Security issues. Unit 27 Web Server Scripting Extended Diploma in ICT 2016 Lecture: Phil Smith

Security issues. Unit 27 Web Server Scripting Extended Diploma in ICT 2016 Lecture: Phil Smith Security issues Unit 27 Web Server Scripting Extended Diploma in ICT 2016 Lecture: Phil Smith Criteria D3 D3 Recommend ways to improve web security when using web server scripting Clean browser input Don

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

SpiraTeam Help Desk Integration Guide Inflectra Corporation

SpiraTeam Help Desk Integration Guide Inflectra Corporation / SpiraTeam Help Desk Integration Guide Inflectra Corporation Date: June 12, 2017 Contents Introduction... 1 1. Zendesk... 2 Introduction SpiraTeam is an integrated Application Lifecycle Management (ALM)

More information