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

Size: px
Start display at page:

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

Transcription

1 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 is updated periodically, please contact Neural Networks to obtain the most up to date revision. All prices quoted are inclusive of GST and are not applicable to customers outside of Australia. Customers from countries other than Australia should contact Neural Networks at sales@neural.com.au for a quote. All prices are in AUD (Australian Dollars). Surcharges may apply depending on payment method. (C) Copyright 2010 Neural Networks Data Services Pty. Ltd. All rights Reserved

2 Contents Welcome API Endpoint & Access Options o Direct HTTPS API Usage Direct HTTPS API Return Formatting o Command Line Interfaces (CLI) Command Line Interfaces (CLI) Downloads Command Line Interfaces (CLI) Usage Postbacks and delivery tracking o Postbacks HTTP / HTTPS API Postbacks Postbacks o Delivery Tracking Sample code o PHP Sample code Notes and FAQ s o Long Messages o Caller ID Formatting o Notes Questions / Need Help?

3 1.0.0 Welcome Thanks you for choosing Neural Networks SMS Gateway API Services. This technical documentation will provide you with all the information you need to start utilising your new SMS gateway service to enhance your business communication utilising SMS. This document is intended for a technical audience. If you re looking for product information such as pricing, or information on how Neural s SMS products can benefit your business, please see our website at: New versions of this technical documentation will be released periodically. Please see our website to download the latest revision API Endpoint & Access Options Neural s SMS API can be access by a number of different methods. The following sections detail the available endpoints and their usage. If you re unsure of which endpoint is most suitable for your application, please don t hesitate to contact Neural support and we d be happy to discuss your requirements.

4 2.1.0 Direct HTTPS API Usage An HTTPS API endpoint is available for direct access over the HTTPS protocol. This provides a universally accessible endpoint to any language or platform. This endpoint can be accessed from many languages including: Any Microsoft.NET or Visual Studio Language o VB / VB.NET o C# / C#.NET o ASP / ASP.NET o etc. Perl Python Ruby PHP Java Practically any language that can make an HTTPS request with POST For languages without a direct implementation of HTTPS and POST calls - an external library such as curl may be used, or alternative API endpoints such as the command line applications may be used. The HTTPS API Address that POST requests should be sent to is: POST Arguments are as follows: Field Name Example Description cid Test Inc. Caller ID displayed on the receiver s mobile to Destination mobile number in 04XXXXXXXX format msg Hi! This is a test message! Message content user User123 Your username pass t0ps3cret?@1 Your password service 1234 The service ID to send this message through confirm 0 Track delivery, and send postback as configured [0/1]

5 2.1.1 Direct HTTPS API Return Formatting Responses to the direct HTTPS API are provided in the following format: state argument The state field will be one of: queued error queued The message was received by the API server successfully and has been queued to be sent. In this case, the argument contains the message ID, which is used to track the message for postbacks and audit. error The message was not received successfully by the API server. In this case, the argument contains the error code. Please see the section Return codes error listing for a complete list of error codes. Return states and arguments are always provided in lower case Once a message has entered the queued sate, the SMS gateway servers will attempt to deliver it to the receiver s handset. If the confirm field was set to 1 then a postback will be triggered when delivery is either successful, fails or times out. Please see the section Postbacks and delivery tracking for more information.

6 2.2.0 Command Line Interfaces (CLI) Neural provides two command line applications to allow easy integration with scripts, 3 rd party applications and languages lacking HTTPS support Command Line Interfaces (CLI) Downloads You can download these applications from the following addresses: Windows: d=40&nav=0,10,12 Linux / BSD / Solaris: d=41&nav=0,10, Command Line Interfaces (CLI) Usage Both the Windows and Linux command line clients accept the same arguments. Please see the readme.txt and usage.txt included with each for detailed instructions. Usage: sms.exe user pass serviceid* destination message [callerid] [confirmation] Example: sms.exe john s3cret "Testing SMS from CLI" "1800NEURAL" 1 * Service ID can be obtained from portal, under service properties

7 3.0.0 Postbacks and delivery tracking If confirmation is requested on a message, postbacks and delivery tracking are made available for the message. The following sections cover postbacks and delivery tracking and their usage Postbacks Postbacks allow you to track the delivery of messages you ve sent via Neural s API. This is done by way of automated responses sent from Neural s API servers back to you, providing updates on a messages delivery status. Postback can be provided in a number of ways, as detailed in the following sections HTTP / HTTPS API Postbacks Delivery confirmation can be provided by HTTP or HTTPS API postbacks to your servers. This requires a server with an internet accessible static IP running an HTTP or HTTPS server with a web application capable of receiving and processing POST requests. Callbacks are sent to a URL of your specification, with the following arguments: [action] => smscallback Static, always contains this value. Useful for multi-purpose callback scripts. [uid] => [Number] This will be the unique ID of the SMS that was returned when the message was originally sent. [status] => 0 Status will be one of: 0 Queued (generally won t be sent as it is implied on sending, can be enabled on request) 1 Sending 2 Sent

8 3 Error 4 - Received [error] => [Error Message] Only sent when status is 3. Contains error code as detailed in return codes error code listing. [completetime] => [Date & Time] Date and time the action was completed (YYYY-MM-DD HH:MM:SS). GMT+10 AEST. Please contact Neural support to have this feature enabled on your account.

9 Postbacks Your account can be configured to send postbacks on message delivery success / delay or failure to an address of your choosing. This can be integrated with backend systems (by parsing the postbacks) and provides an excellent manual audit and archive solution for SMS communications. Please contact Neural support to have this feature enabled on your account.

10 3.2.0 Delivery Tracking You can monitor the delivery of individual or bulk messages via Neural SMS manager. This provides a visual indication of a message s delivery status all the way form queued to received. You can access Neural SMS Manager at: You can track message delivery by navigating to Outbound > Outbound message listing Here you will find a listing of your most recently sent messages. The Confirm field shows the message delivery confirmation status of the message. Confirm states can include: Not requested Pending Confirmed Not Received The processing column shows the current processing state of the message, processing states can include: Queued Sending Sent Received Failed

11 The manual delivery tracking method encompasses API with no postback. Delivery tracking can optionally be combined with one of the other available postback methods to allow both automatic postback, as well as manual audit via the Neural SMS Manager interface. Did you know: Neural SMS Manager also provides a quick and user-friendly way to manually send SMS messages without the use of the APIs. Did you know: Neural SMS Manager is available as a white-label product. This means you can provide it to your customers with your branding and colour scheme. Contact our sales department today for more information.

12 4.0.0 Sample code Sample code for API usage is provided in the following sections. Additional languages will be provided in later revisions of this document, and via our knowledge base at: PHP Sample code The following sample code demonstrates the use of the HTTP API using curl. You will need the PHP curl module installed and loaded, as well as the curl package for your operating system. <?php $postdata = array(); $postdata['cid'] = 'Test'; //Caller ID $postdata['to'] = ''; //Destination number $postdata['msg'] = 'This is a test message'; //Message test $postdata['user'] = ; //TT Username $postdata['pass'] = ''; //TT Password $postdata['service'] = ''; //Service ID - can be obtained from portal.neural.net.au under 'Service Information' $postdata['confirm'] = '0'; //Send postback on completion (1 = yes, 0 = no) $postdata['action'] = 'sendsms'; $ch = curl_init(); curl_setopt($ch, CURLOPT_USERAGENT, "Neural SMS PHP Example Code"); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_VERBOSE, false); curl_setopt($ch, CURLOPT_URL, " curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata); $result = explode(' ',curl_exec($ch)); curl_close($ch); if($result[0] == 'queued'){ echo 'Message queued for sending with unique ID '. $result[1]; }elseif($result[0] == 'error'){ echo 'Sending failed - error code '. $result[1]; }elseif(!$result[0]){ echo 'No response received - communication issue'; }else{ echo 'Unexpected response received: '. $result[0]; };?>

13 Return codes Error Code Listing In the event of an error, you may receive one of the following return codes back from the API. Please note that there are additional return codes specific to SMS on the following page. Please see the previous pages for response formatting from the various API endpoints. API Global Return Codes: 1 Authentication failure Please check your username and password. 2 You must specify a username and password Please supply a username and password. 7 Internal error An internal error has occurred on the API server, please try again. 10 Service identification error You may be using the incorrect service ID. This error may occur, for example, of the service ID of a fax service was sent to the SMS API. 11 Service ID access denied You may be using the incorrect service ID. This occurs when the service ID specified does not exist on your account. 12 No action specified You must specify an action for every API request, please refer to the documentation for proper action request methods. 16 Communications issue - check connection There was a problem communication with the API server, please check your internet connection. Not all API interfaces will provide this error code. For example, it is not provided if a connection fails to the direct HTTP API. 17 Unexpected response - check for proxies or filters The response from the API server was unexpected. There may be a proxy server or internet access filter / firewall in between the client and API server that is interfering with communication.

14 SMS Specific Return Codes: 3 Both a source and destination number are required You must include a source (caller ID) and destination number for every SMS. Source number may contain numbers, letters and spaces. Destination number must be a valid mobile number. 5 Invalid destination number The destination number specified is invalid. Numbers should be in standard Australian mobile number format (04XXXXXXXX). 8 Caller ID too long The caller ID specified is too long. The limit is 11 characters. Some older phones may not display caller ID s longer than 10 characters correctly 9 You must supply a message A message to send must be specified. You cannot send an empty message. 15 You must have an SMS service to access this API Your account may not have an SMS service. Please contact support if you receive this error code.

15 5.0.0 Notes and FAQ s The following sections list some important notes, as well as frequently asked questions regarding Neural s SMS API services Long Messages Messages over 160 characters will be sent as normal, being automatically split into 160 character blocks. They will arrive as one message on the receivers mobile if it supports message fragmentation. All modern handsets support this, however some older ones may not. Please be aware that for fragmented messages, you will be charged for one message per 160 character fragment. For example, if you sent a 200 character message, two message charges would be incurred Caller ID Formatting Caller ID can be up to 11 characters long, however we recommend using 10 characters or below to maintain universal handset compatibility. Spaces, numbers and letters can be used. Special characters are not supported, with the exception of full stops, exclamation marks and hyphens Notes

16 6.0.0 Questions / Need Help? Neural support is on call 24 x 7 to assist. Whether you re stuck, or just have some general questions, please don t hesitate to ask! Call us 1800 NEURAL or (07) Option 2 (Support) us support@neural.com.au We ll call you! /callback More product information is available on our website /products Manage your existing services You can access your reseller account via portal.neural.net.au

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

API Technical Reference

API Technical Reference 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)1249 566010 E-mail: support@callprocrm.com

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

HOW TO GUIDE WITH ABZORB REAL TIME USAGE ALERTS

HOW TO GUIDE WITH ABZORB REAL TIME USAGE ALERTS HOW TO GUIDE WITH ABZORB REAL TIME USAGE WELCOME To The New CapZ Service From Abzorb Usage will be collected in real-time and alerts then sent to customers via text message or email to let them know when

More information

Kapow SMS libraries: Integrating SMS support with your PHP, and Windows applications

Kapow SMS libraries: Integrating SMS support with your PHP, and Windows applications Kapow SMS libraries: Integrating SMS support with your PHP, and Windows applications Version: 20.1 Publication date: 6 th January 2015 www.kapow.co.uk Kapow SMS Gateway All content herein including images,

More information

Opaali Portal Quick guide

Opaali Portal Quick guide Opaali Portal Quick guide Company information Telia Finland Oyj Teollisuuskatu 15, 00510 HELSINKI, FI Registered office: Helsinki Business ID 1475607-9, VAT No. FI14756079 1 (40) Page 2 (40) Copyright

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

SMS Mobile Termination (MT) API Guide for HTTPS

SMS Mobile Termination (MT) API Guide for HTTPS SMS Mobile Termination (MT) API Guide for HTTPS The content of this document are copyright and remain the property of National Informatics Centre. This document is not to be reproduced in any form whether

More information

Way2mint SMS Mobile Terminate (MT) API Guide for HTTP / HTTPS

Way2mint SMS Mobile Terminate (MT) API Guide for HTTP / HTTPS Way2mint SMS Mobile Terminate (MT) API Guide for HTTP / HTTPS 10/1/2009 Way2mint Services Prepared by: Mohit Jaswani Copyright Way2mint Services The content of this document are copyright and remain the

More information

New Dashboard - Help Screens

New Dashboard - Help Screens New Dashboard - Help Screens Welcome to the new Panacea Dashboard. This document aims to provide you with concise explanations of the menu system and features available to you as a Panacea user account

More information

HTTP API Specification V2.7

HTTP API Specification V2.7 HTTP API Specification V2.7 Version information Version Comment Date V2.7 Added testsms call 2017-08-09 V2.6 HTTPS information added 2016-12-10 Added error code 4007 V2.5 Changed endpoints 2016-12-09 Added

More information

ezeesms URL API Documentation

ezeesms URL API Documentation ezeesms URL API Documentation 1 1. ABOUT COMPANY: Pinnacle Teleservices Pvt. Ltd. is a leading Cellular IT Solutions Company established in 2003 and awarded as ISO 9001: 2008 Certified Company, traveled

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

International Roaming. User Guide

International Roaming. User Guide International Roaming User Guide 1 Table of Contents What is International Roaming?... 2 Getting International Roaming... 2 How International Roaming works... 2 Just before you go... 2 What you need to

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

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

SMS Outbound. HTTP interface - v1.1

SMS Outbound. HTTP interface - v1.1 SMS Outbound HTTP interface - v1.1 Table of contents 1. Version history... 5 2. Conventions... 5 3. Introduction... 6 4. Application Programming Interface (API)... 7 5. Gateway connection... 9 5.1 Main

More information

HTTP API-HELP DOCUMENT

HTTP API-HELP DOCUMENT PARAMETER DEFINITION S.NO PARAMETER PARAMETER VALUE PARAMETER NAME DESCRIPTION 1 User Test User User name of the 2 Passwd Test Password Password of the account 3 Sid DEMO Sender id Destination Mobile 4

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

TraiTel Telecommunications. TTMessenger 4.xx. User Manual

TraiTel Telecommunications. TTMessenger 4.xx. User Manual TraiTel Telecommunications TTMessenger 4.xx User Manual Contents Getting Started... 5 What is TTMessenger?... 5 System Requirements... 5 Operating System... 5 Hardware requirements Minimum Recommended...

More information

Extended sms2 API Documentation

Extended sms2 API Documentation Extended sms2email API Documentation Written by Jateen Mistry Revised: 19 th April 2004 Description The advanced sms2email API is an extension to publicly available messaging API. The existing API is concerned

More information

APPLICATION SOLUTIONS

APPLICATION SOLUTIONS APPLICATION SOLUTIONS OUTLOOK SMS USER MANUAL Outlook SMS User Manual Table Of Contents 1. Welcome... 1 2. Getting Started... 2 Register for Outlook SMS... 2 Install Outlook SMS... 2 SMS Button... 2 SMS

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

Distribute Call Studio applications to Unified CVP VXML Servers.

Distribute Call Studio applications to Unified CVP VXML Servers. is one of the Cisco Unified Customer Voice Portal (CVP) components and a web-based interface using which you can configure other Unified CVP components and devices in the Unified CVP solution. Use to perform

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

REST SERVICE. Web Services API Version 1.5

REST SERVICE. Web Services API Version 1.5 REST SERVICE Web Services API Version 1.5 The information contained within this document is the property of PageOne Communications Ltd and may not be copied used or disclosed in whole or in part, except

More information

Flexible CSV CDR Importer

Flexible CSV CDR Importer Edition: 1.0 Release date: August 17, 2016 Smile version: 6.0 Published by Inomial Pty Ltd Suite 801, 620 Bourke St, Melbourne, Vic 3000, Australia www.inomial.com +61 3 9663 3554 sales@inomial.com support@inomial.com

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

Before you start! : 1. It is important to know some things code, before starting the deal with this file.

Before you start! : 1. It is important to know some things code, before starting the deal with this file. Introduction: Do you have a special program you want linking it with the mobile messaging service SMS? We offer you in the SMS Mobily.ws service gate transmission API that lets you effortlessly connect

More information

SONERA OPERATOR SERVICE PLATFORM OPAALI PORTAL SMS. FREQUENTLY ASKED QUESTIONS, version 2.0

SONERA OPERATOR SERVICE PLATFORM OPAALI PORTAL SMS. FREQUENTLY ASKED QUESTIONS, version 2.0 SONERA OPERATOR SERVICE PLATFORM FREQUENTLY ASKED QUESTIONS, version 2.0 OPAALI PORTAL Q: Why Registration link to Opaali portal does not work currently, HTTP Operation Forbidden error is shown? A: Sonera's

More information

O Reilly Ebooks Your bookshelf on your devices!

O Reilly Ebooks Your bookshelf on your devices! r e l p m a S e e r F O Reilly Ebooks Your bookshelf on your devices! When you buy an ebook through oreilly.com, you get lifetime access to the book, and whenever possible we provide it to you in four,

More information

SOAP API. The correct URL has been hidden. Please contact your account manager for the full URL information.

SOAP API. The correct URL has been hidden. Please contact your account manager for the full URL information. SMS Help Guides TNZ Group Limited sales@tnz.co.nz +64 9 9293000 +64 9 522 8839 SOAP API SOAP is a simple way of sending SMS/TXT messages via the internet. It is a great solution for integration into existing

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

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

WhatsATool API - REST-Like Interface to WhatsATool Services

WhatsATool API - REST-Like Interface to WhatsATool Services Disclaimer This service and also mtms Solutions GmbH is not associated in any case with WhatsApp. WhatsApp is a registered Trademark owned by WhatsApp Inc. mtms is not related in any way with WhatsApp

More information

Automatic Transfer Tool User and Installation Guide

Automatic Transfer Tool User and Installation Guide Automatic Transfer Tool User and Installation Guide Version 1.1, 2014 1 Table of Contents 1. Automatic Transfer Tool... 2 1.1 Purpose of document... 2 1.2 System requirements and prerequisites... 2 1.3

More information

A.S.A.P. HELP GUIDE. ASAP Advice Pty Ltd. 725 Sandy Bay Road, Sandy Bay, TAS 7005 ABN

A.S.A.P. HELP GUIDE. ASAP Advice Pty Ltd. 725 Sandy Bay Road, Sandy Bay, TAS 7005 ABN Accountants Scaled Advice Platform A.S.A.P. HELP GUIDE Contents: Tutorial: Ordering a Statement of Advice Using the platform o How do I become a member of A.S.A.P. s platform? o What are the requirements

More information

Salesforce Integration User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA

Salesforce Integration User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA Salesforce Integration User Guide 2017 Cvent, Inc 1765 Greensboro Station Place McLean, VA 22102 www.cvent.com Contents Salesforce Integration User Guide... 3 Setting Up Your Account... 4 Helpful Hints...

More information

BulkSMS Marketo Gateway

BulkSMS Marketo Gateway BulkSMS Marketo Gateway Integration Guide Page 1 Contents Introduction... 4 About the BulkSMS Gateway for Marketo... 4 Advanced Group Messaging Key Features... 4 Use any or all of our other products and

More information

RESTful API. Documentation

RESTful API. Documentation RESTful API Documentation Copyright 2014, 2015, 2016 by cybertoolbelt.com All Rights Reserved Revision: 1.0 9/3/2014 1.1 9/27/2014 1.2 10/16/2014 1.3 10/27/2014 1.4 11/6/2014 1.5 2/11/2015 1.7 3/18/2015

More information

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 For help, contact support@linkmobility.com The most up-to-date version of this document is available at http://www.linkmobility.com/developers/

More information

SMS Submit Interface description HTTP Version 1.5

SMS Submit Interface description HTTP Version 1.5 SMS Submit Interface description HTTP Version 1.5 This document is intended for application developers with knowledge about the HTTP protocol. Document history Version Description 1.5 Spelling error corrected

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

Registering at the PNC Developer Portal

Registering at the PNC Developer Portal Registering at the PNC Developer Portal 1.) Navigate to the Developer Portal at: https://developer.pnc.com 2.) Click the Join button on the upper right corner of the Developer Portal page: 3.) Enter in

More information

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/...

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/... PROCE55 Mobile: Web API App PROCE55 Mobile with Test Web API App Web API App Example This example shows how to access a typical Web API using your mobile phone via Internet. The returned data is in JSON

More information

User Guideline v 2.1. For assistance please contact Grapevine on or

User Guideline v 2.1. For assistance please contact Grapevine on or SMS Broadcast User Guideline v 2.1 Support : Feedback : For assistance please contact Grapevine on +27 21 702 3333 or email support@vine.co.za Please email info@vine.co.za with your comments and feedback

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

FAQ. General Information: Online Support:

FAQ. General Information: Online Support: FAQ General Information: info@cionsystems.com Online Support: support@cionsystems.com CionSystems Inc. Mailing Address: 16625 Redmond Way, Ste M106 Redmond, WA. 98052 http://www.cionsystems.com Phone:

More information

GRAPEVINE INTERACTIVE

GRAPEVINE INTERACTIVE GRAPEVINE INTERACTIVE SMS Broadcast User Manual Contact us: GRAPEVINE HOUSE, STEENBERG OFFICE PARK, SILVERWOOD CLOSE, TOKAI, 7945 PO BOX 104, STEENBERG, 7947 TEL: +27-21-702-3333, FAX: +27-21-702-3334

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

SurePassID Local Agent Guide SurePassID Authentication Server 2016

SurePassID Local Agent Guide SurePassID Authentication Server 2016 SurePassID Local Agent Guide SurePassID Authentication Server 2016 SurePassID Local Agent Guide Revision: 03 10 2016 You can find the most up-to-date technical documentation at: http://www.surepassid.com

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

SMS Outbound. SMTP interface - v1.1

SMS Outbound. SMTP interface - v1.1 SMS Outbound SMTP interface - v1.1 Table of contents 1. Version history... 5 2. Conventions... 5 3. Introduction... 6 4. Gateway connection... 7 4.1 E-mail message format... 7 4.2 Header section... 7 4.3

More information

Revision: 50 Revision Date: :43 Author: Oliver Zabel. GTX Mobile Messaging SMS Gateway Interface Simple HTTP API Manual

Revision: 50 Revision Date: :43 Author: Oliver Zabel. GTX Mobile Messaging SMS Gateway Interface Simple HTTP API Manual Revision: 50 Revision Date: 09.06.17 14:43 Author: Oliver Zabel GTX Mobile Messaging SMS Gateway Interface Simple HTTP API Manual Table of Contents Table of Contents... 2 Introduction... 3 Sending SMS...

More information

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme SER1912BE VMware Open-Source SDKs From Getting Started to Web App in One Hour Alan Renouf Sr Product Line Manager, Vmware Steve Trefethen Sr. Manager R&D, VMware VMworld 2017 Content: Not for publication

More information

This guide covers the installation, setup, and configuration of Sertifi for Salesforce CPQ.

This guide covers the installation, setup, and configuration of Sertifi for Salesforce CPQ. This guide covers the installation, setup, and configuration of Sertifi for Salesforce CPQ. Contents Sertifi for Salesforce CPQ Prerequisites... 2 Section 1: Sertifi for Salesforce installation and setup...

More information

Dip Your Toes in the Sea of Security. James Titcumb PHP Dorset 2nd June 2014

Dip Your Toes in the Sea of Security. James Titcumb PHP Dorset 2nd June 2014 Dip Your Toes in the Sea of Security James Titcumb PHP Dorset 2nd June 2014 Who is this guy? James Titcumb www.jamestitcumb.com www.protected.co.uk www.phphants.co.uk @asgrim Who are you? https://www.flickr.com/photos/akrabat/10168019755/

More information

Dashboard User Guide For assistance, please call

Dashboard User Guide For assistance, please call Dashboard User Guide For assistance, please call 1-866-399-8647. With these instructions, you will: PAGE 1. Login to the Clarity site, Configure 911, and Change your Password... 2 2. Set up Mobile Connect

More information

PayTrace Virtual Terminal

PayTrace Virtual Terminal PayTrace Virtual Terminal Training Aid August 2011 Let s get started by learning about your needs All merchants using PayTrace will be processing transactions. The real question is how will you be processing

More information

Administration Guide for Resellers

Administration Guide for Resellers Administration Guide for Resellers Version 1.1 (August 18th, 2016) REC.VC is a cloud service by REC.VC Administration Guide for Resellers, Version 1.1 (August 18th, 2016) 1 REC.VC Administration Guide

More information

Release Note for TG800

Release Note for TG800 Version 55.18.0.X Yeastar Information Technology Co. Ltd. ===Firmware Version: V55.18.0.43== Applicable Model: TG800 Release Date: August 5, 2015 New Features 1. Added Auto CLIP feature. 2. Added FTP Enable

More information

Quick Guide to TraiTel Outbound IVR. Traitel Telecommunications Ltd 2012 Telephone: (61) (2) Page 1

Quick Guide to TraiTel Outbound IVR. Traitel Telecommunications Ltd 2012 Telephone: (61) (2) Page 1 Quick Guide to TraiTel Outbound IVR Page 1 Quick Guide to TraiTel Outbound IVR The TraiTel IVR system is designed to be easy to set up for people with basic computer knowledge. TraiTel has a team of technical

More information

KNET API Integration Guide

KNET API Integration Guide KNET API Integration Guide API INTEGRATION GUIDE VERSION 1.0 1 Table of Contents 1. Overview...5 1.1 Scope...5 1.2 Target Audience...5 1.3 Assistance...5 1.4 Documentation Feedback...5 2 KNET Transaction

More information

Get feedback from your target audience in a single click PROPOSAL & OVERVIEW BULK VOICE MESSAGING/OBD SOLUTION

Get feedback from your target audience in a single click PROPOSAL & OVERVIEW BULK VOICE MESSAGING/OBD SOLUTION Get feedback from your target audience in a single click PROPOSAL & OVERVIEW BULK VOICE MESSAGING/OBD SOLUTION CONTENTS ABOUT US... 3 BULK VOICE MESSAGING/OBD SOLUTION... 4 OBD API/URL HELP. 5 DEMO DETAILS

More information

Wired 2 Wireless Technology Solutions API Help Document Copyright Introduction. 2. Parameter list

Wired 2 Wireless Technology Solutions API Help Document Copyright Introduction. 2. Parameter list 1. Introduction Wired 2 Wireless Technology Solutions offers an easy way to send and receive messages via its built-in webserver using HTTP. In this document you will learn how to send SMS, check delivery

More information

MySagePay USER GUIDE

MySagePay USER GUIDE MySagePay USER GUIDE 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

Way2mint SMS Mobile Terminate (MT) API Guide for HTTP HTTPS

Way2mint SMS Mobile Terminate (MT) API Guide for HTTP HTTPS Way2mint SMS Mobile Terminate (MT) API Guide for HTTP HTTPS The content of this document are copyright and remain the property of. This document is not to be reproduced in any form, whether electronic,

More information

Ivy migration guide Getting from Dashboard to Ivy

Ivy migration guide Getting from Dashboard to Ivy Ivy migration guide Getting from Dashboard to Ivy Document history Revision Author Date Initial April Jones 2015-05-07 Rev. 1 April Jones 2015-05-14 Rev. 2 April Jones 2016-02-15 About this guide Teliax

More information

ACN Mobile User Manual

ACN Mobile User Manual ACN Mobile User Manual GETTING STARTED... 3 ACTIVATING YOUR SIM CARD... 3 YOUR PIN CODE... 3 Changing your PIN code... 3 YOUR PUK CODE... 3 CALLING ANYWHERE!... 4 Calling in the Netherlands... 4 Calling

More information

1. Overview Account Configuration Details... 3

1. Overview Account Configuration Details... 3 WhatsApp Enterprise API - Technical Guide V4.4 July 2018 Index 1. Overview... 3 2. Account Configuration Details... 3 2.1 Provisioning of a Demo API... 3 2.2 Activation of Production API... 3 2.3 Setting

More information

Enhanced new user experience with simple to use navigation and better buying experience. Trade accounts will see current order status, and history

Enhanced new user experience with simple to use navigation and better buying experience. Trade accounts will see current order status, and history NEW FEATURES AT ATLANTIC.REXEL.CA What s New? Enhanced new user experience with simple to use navigation and better buying experience Updated search functionality Trade accounts will see current order

More information

Technical Specification Mr Cash

Technical Specification Mr Cash Technical Specification Mr Cash (MRC.001) Author(s): Michel Westerink (MW) Version history: V1.0 MW (Copy of targetpay.com) 07/09/13 V1.1 MKh Update error messages 25/02/14 V1.2 TZ New IP whitelisted 29/08/14

More information

Pro. RDB SMS integration. ProNet. investing in your future

Pro. RDB SMS integration. ProNet. investing in your future Pro ProNet investing in your future VoodooSMS ProText User Manual Enable SMS within RDB ProNet by installing the VoodooSMS ProText Plugin for a cost effective SMS solution. Getting started with VoodooSMS

More information

Resolving SMS issues within Pastoral Care

Resolving SMS issues within Pastoral Care Resolving SMS issues within Pastoral Care SMS transmission issues can occur due to unforeseen events, the purpose of this document is to go through possible problems to isolate how to resolve the situation.

More information

Avaya Communications Process Manager Release 2.2 Web Portal Help for Non-administrative Users

Avaya Communications Process Manager Release 2.2 Web Portal Help for Non-administrative Users Avaya Communications Process Manager Release 2.2 Web Portal Help for Non-administrative Users Document No. 04-601161 August 2008 Issue 12 2008 Avaya Inc. All Rights Reserved. Notice While reasonable efforts

More information

Interactive Voice Response (IVR) Extension Type Guide

Interactive Voice Response (IVR) Extension Type Guide 4PSA VoipNow 2.0.3 Interactive Voice Response (IVR) Extension Type Guide For more information about 4PSA VoipNow, check: http://www.voipnow.com Copyrights 2002-2009 Rack-Soft, LLC. VoipNow is a registered

More information

Sendroid Ultimate. User Manual

Sendroid Ultimate. User Manual Sendroid Ultimate User Manual System Overview Sendroid Ultimate is an ultimate bulk SMS portal software and SMS reseller system designed for bulk SMS service providers, SMS resellers and bulk SMS marketers.

More information

Admin/User Manual SoftPal.com.ng

Admin/User Manual SoftPal.com.ng Admin/User Manual SoftPal.com.ng 2 THIS MANUAL IS DIVIDED INTO THREE PARTS: 1. THE MEMBER CONTROL PANEL 2. THE ADMIN CONROL PANEL 3. THE CONTENT MANAGEMENT PANEL THE MEMBER CONTROL PANEL is visible to

More information

BBP Admin Participant Portal. Simplify your healthcare finances with convenient, online access to your tax-advantaged benefit account

BBP Admin Participant Portal. Simplify your healthcare finances with convenient, online access to your tax-advantaged benefit account BBP Admin Participant Portal Simplify your healthcare finances with convenient, online access to your tax-advantaged benefit account 1 BBP Admin Participant Portal Contents Getting started... 2 Registration...

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

SMS API User Guide. Document Reference: October Version: 6

SMS API User Guide. Document Reference: October Version: 6 SMS API User Guide Document Reference: 8297 October 2016 Version: 6 Version Date Author Changes Number 1 Apr 2015 John Lindsay 2 Sep 2015 Sam Smith Branding updated USSD section added Postman updated 3

More information