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

Size: px
Start display at page:

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

Transcription

1 SMS API User Guide Document Reference: 8297 October 2016 Version: 6

2 Version Date Author Changes Number 1 Apr 2015 John Lindsay 2 Sep 2015 Sam Smith Branding updated USSD section added Postman updated 3 May 2016 Sam Smith Branding updated Renamed USSD section removed 4 Jul 2016 Sam Smith Inserted SMS MT parameter table Moved delivery receipt into the table 5 Aug 2016 Sam Smith Updated MT Postman example Clarified text parameter 6 Oct 2016 Sam Smith Added non-alphabet ASCII characters Page 1

3 Contents 1 Introduction Preparation API location Non-alphabet ASCII characters Mobile Terminated SMS SMS pathways Parameters Example using CURL Example using Perl Example using Postman app Example using PHP Example using a browser Errors ERROR 010: Invalid password supplied ERROR 011: Invalid username supplied ERROR 510: API Requests from this IP Address (x.x.x.x) are not allowed ERROR 530: API Requests authentication failed! ERROR 550: Invalid MSISDN (xxxxx) supplied ERROR 550: Invalid Parameter text supplied ERROR 550: Invalid text message the message is too long ERROR 550: The destination Parameter is missing ERROR 570: Destination MSISDN (xxxxxxxxxx) has no credit ERROR 580: Please use only GSM basic 7 bit characters Invalid controller specified Notice: Undefined property: stdclass::$text ERROR 526: message_id must be supplied for delivery receipt Mobile Originated SMS SMS pathways Example MO SMS Page 2

4 1 Introduction This guide describes the functionality and use of the Eseye messaging API. The Eseye messaging API can be used for delivery and receipt of SMS messages as well as a number of more advanced features. This guide outlines how to interact with this API. The process can be logically split into two sections; the SMS sending interface (Mobile Terminated, to connected device/ AnyNet SIM card) and the receiving interface (Mobile Originated, from connected device/ AnyNet SIM card). 2 Preparation A user account is required for use of the API. The configuration of this user account allows a number of parameters to be specified, customers are required to have provided the following to Eseye: Parameter Description SMS whitelist Server IP whitelist Mobile Originating (MO) URL The definition of a list of permissible MSISDN s* effective in both directions; Mobile Originated (MO) and Mobile Terminated (MT). IP Address whitelist for incoming requests URL to POST when a MO Message is received Eseye will provide the following information: Parameter Description Username Password API MSISDN API account username API account password Destination MSISDN routed to API *MSISDN The telephone number to the SIM card in a mobile/cellular phone 3 API location The messaging API is formed of a POST interface over HTTPS. The API is located at: Page 3

5 4 Non-alphabet ASCII characters Character Description Encode as [Carriage Return] carriage return %0D [Line feed] line feed %0A [Space] space %20 " quotation mark %22 # hash %23 % percent %25 & ampersand %26, comma %2C. period %2E / forward slash %2F ; semi-colon %3A : colon %3B < less than %3C = equal %3D > greater than %3E? question mark %3F inverted exclamation mark %A1 pound %A3 currency sign %A4 yen %A5 paragraph sign %A7 Ä capital A with diaeresis %C4 Å capital A with ring %C5 à small a grave %E0 ä small a with diaeresis %E4 å small a with ring %E5 Æ capital diphthong AE %C6 Ç capital C cedilla %C7 É capital E acute %C9 è small e grave %E8 é small e acute %E9 ì small i grave %EC Ñ capital N with tilde %D1 ñ small n with tilde %F1 ò small o grave %F2 ö small o with diaeresis %F6 Ø capital O with storke %D8 Ö capital O with diaeresis %D6 Ü capital U with diaeresis %DC ù small u grave %F9 ü small u with diaeresis %FC ß small s sharp %DF Page 4

6 5 Mobile Terminated SMS This section of the API allows delivery of an SMS message to an Eseye SIM card. Eseye perform a number of checks on SMS messages to be terminated on an Eseye SIM card. In addition to the checks described in the Security section the interface also ensures the following checks pass. 1) Check authenticated user has access rights send an SMS 2) Check optional white list of source devices 3) Check to see if all messages to this SIM should be routed to application API 4) Check to see if this SIM is barred from receiving SMS* *SMS barring is defined outside of the scope of this API, enabling or disabling of Mobile Originated or Mobile Terminated Messages is linked to the SIM package. 5.1 SMS pathways The following two diagrams display the main pathways used by a mobile terminated SMS, with the codes for the pathway in square brackets. Page 5

7 5.2 Parameters Parameter Description Optional/ Mandatory username API account username Mandatory password API account password Mandatory destination Mobile number (MSISDN) of the recipient device Mandatory text The SMS message contents Mandatory message_id User generated unique message identifier Optional receipt_url url to send the delivery receipt to Optional source mode expiry The source MSISDN, if left then it will be sent from the API configuration Leave blank for default = 7 bit 8 for 8bit encoded The date-time for the message to expire if not delivered Optional Optional Optional 5.3 Example using CURL The following is an example of a basic SMS message send request using CURL with the following parameters: Username User Password Pass Destination Text (message content) - Test curl -d "username=user&password=pass&destination= &text=test" The return from this request is: "OK!" Page 6

8 5.4 Example using Perl The following is an example of a basic SMS message send request using Perl with LWP::UserAgent with the following parameters: Username User Password Pass Destination Text (message content) - Test use LWP::UserAgent; my $ua = LWP::UserAgent->new; $ua->agent('perlproc/1.0'); # Create a request my $req = => ' $req->content_type('application/x-www-form-urlencoded'); $req->content(' username=user&password=pass&destination= &text=test ); # Pass request to the user agent and get a response back my $response = $ua->request($req); if( $response->is_success ){ my $Message = $response->content; print "Return: $Message\n"; } else { print "Error ". $response->status_line. "\n"; } The return from this request is: Return: "OK!" Page 7

9 5.5 Example using Postman app For more information on this app, the Eseye Postman User Guide (url: The following is an example of a basic SMS message send request using Postman application with the following parameters (use the Params button not Headers): Username User Password Pass Destination Text (message content) - Test The return from this request is OK! Page 8

10 5.6 Example using PHP The following is an example of a basic SMS message send request using PHP POST method with the following parameters: Username User Password Pass Destination Text (message content) - Test <?php $url = ' $params = array('username'=>'user', 'password'=>'pass', 'destination'=>' ', 'text'=>'test'); // use key 'http' even if you send the request to $options = array( 'http' => array( 'header' => "Content-type: application/x-www-formurlencoded\r\n", 'method' => 'POST', 'content' => http_build_query($params), ), ); $context = stream_context_create($options); $result = file_get_contents($url, false, $context); echo($result);?> The return from this request is: Return: "OK!" 5.7 Example using a browser The following is an example of a basic SMS message send request using a web browser with the following parameters: Username User Password Pass Destination Text (message content) - Test &text=Test The return from this request is: OK! Page 9

11 5.8 Errors ERROR 010: Invalid password supplied This indicates that password has been entered incorrectly ERROR 011: Invalid username supplied This indicates that either username has been entered incorrectly or that the account being used does not have the privileges to use this service ERROR 510: API Requests from this IP Address (x.x.x.x) are not allowed This indicates that the device being used is not authorised. When setting up your account you will have agreed a Server IP whitelist, a list of IP addresses from which incoming requests can be made, this IP address is not on the list ERROR 530: API Requests authentication failed! This indicates that either your username or password have been entered incorrectly ERROR 550: Invalid MSISDN (xxxxx) supplied This indicates that the MSISDN supplied is invalid. Ensure it has the appropriate country calling code ERROR 550: Invalid Parameter text supplied This indicates that text has been entered incorrectly into the URL Parameter Key box ERROR 550: Invalid text message the message is too long This indicates that the message is too long. Messages are limited to 160 characters for standard 7-bit delivery ERROR 550: The destination Parameter is missing This indicates that destination has been entered incorrectly into the URL Parameter Key box ERROR 570: Destination MSISDN (xxxxxxxxxx) has no credit. This indicates that there is no credit available for the destination MSISDN. This only applies where the destination MSISDN account is charged. For instructions on adding credit to your account, please visit Eseye's SIAM Portal, or contact Eseye for further guidance ERROR 580: Please use only GSM basic 7 bit characters or specify 8 bit mode This indicates that a non-standard character is included in the message text. API SMS only supports characters from the ETSI USSD default alphabet, as defined in GSM ( bit_default_alphabet_and_extension_table_of_3gpp_ts_23.038_.2f_gsm_03.38) Invalid controller specified (username=exampleusername&password= ExamplePassoword&destination= ) This indicates that the? from the section of URL has been entered incorrectly Notice: Undefined property: stdclass::$text This indicates that an invalid parameter has been entered, this includes capitalisation of valid parameters and additional parameters. Page 10

12 ERROR 526: message_id must be supplied for delivery receipt This indicates that the message_id has not been entered. 6 Mobile Originated SMS SMS messages originating from an Eseye SIM card may be collected via this interface. By default, messages will be delivered via this API when they are sent to the phone number assigned to the account, but it is also possible to configure that all SMS messages from specified Eseye SIM cards to be delivered to the API. Eseye perform a number of checks on SMS messages from a SIM card (Mobile Originated), In addition to checks described in the Security section the following checks are made: 1) Check to see if this SIM is barred from sending SMS* 2) Check to see if all messages from this SIM should be routed to application API *SMS barring is defined outside of the scope of this API, enabling or disabling of Mobile Originated or Mobile Terminated Messages is linked to the SIM package. The HTTP POSTs will be delivered to the URL attached to your user account. 6.1 SMS pathways The following diagram displays the main pathways used by a mobile originated SMS, with the codes for the pathway in square brackets. Page 11

13 6.2 Example MO SMS The following is an example of a basic SMS message send request using CURL with the following parameters: Device MSISDN Destination Text (message content) - Test Iteration 0 DateTime: :23:04 HTTP headers: Request Method:POST Request URI:/catchpost.php Server Protocol:HTTP/1.1 Host: messaging.redstation.eseye.com Accept: */* X-Forwarded-For: Request body: array ( ) 'source' => ' ', 'destination' => ' ', 'messageid' => ' ', 'text' => Test, Page 12

SMS API TECHNICAL SPECIFICATION

SMS API TECHNICAL SPECIFICATION SMS API TECHNICAL SPECIFICATION Version 2.1 Provision of the Click SMS Gateway Service is dependent upon compliance with the specifications contained in this document. Although Click SMS has taken reasonable

More information

Appendix C. Numeric and Character Entity Reference

Appendix C. Numeric and Character Entity Reference Appendix C Numeric and Character Entity Reference 2 How to Do Everything with HTML & XHTML As you design Web pages, there may be occasions when you want to insert characters that are not available on your

More information

ASCII Code - The extended ASCII table

ASCII Code - The extended ASCII table ASCII Code - The extended ASCII table ASCII, stands for American Standard Code for Information Interchange. It's a 7-bit character code where every single bit represents a unique character. On this webpage

More information

Tigrillo API User Guide

Tigrillo API User Guide Tigrillo API User Guide Document Reference: 8281 September 2016 Version: 9 Version Date Author Changes Number 1 Mar 2015 John Lindsay 2 Sep 2015 Sam Smith Branding updated Updated to be used with 8314

More information

OOstaExcel.ir. J. Abbasi Syooki. HTML Number. Device Control 1 (oft. XON) Device Control 3 (oft. Negative Acknowledgement

OOstaExcel.ir. J. Abbasi Syooki. HTML Number. Device Control 1 (oft. XON) Device Control 3 (oft. Negative Acknowledgement OOstaExcel.ir J. Abbasi Syooki HTML Name HTML Number دهدهی ا کتال هگزاد سیمال باینری نشانه )کاراکتر( توضیح Null char Start of Heading Start of Text End of Text End of Transmission Enquiry Acknowledgment

More information

SIAM R3.0 USER GUIDE

SIAM R3.0 USER GUIDE SIAM R3.0 USER GUIDE Document Reference: 8295 September 2016 Revision: 3 Version Date Author Changes Number 1 Mar 2015 John Lindsay 2 Jun Sam Unsuspending a SIM card description updated. 2016 Smith 3 Sep

More information

API-SMS HTTP/GET Interface Ref Push SMS, Balance, ACKs. April 18, 2017 v1.12

API-SMS HTTP/GET Interface Ref Push SMS, Balance, ACKs. April 18, 2017 v1.12 Ref. 17041802 - Push SMS, Balance, ACKs. April 18, 2017 v1.12 Index Page 1 Introduction 3 1.1 Changelog 3 2 Send SMS messages (MT) 4 2.1 Required information 4 2.2 HTTP/GET Messaging 4 2.3 HTTP/GET Variables

More information

text2reach2 SMS API Sep 5, 2013 v1.1 This document describes application interface (API) between SMS service provider (SP) and SMS gateway (SMSGW).

text2reach2 SMS API Sep 5, 2013 v1.1 This document describes application interface (API) between SMS service provider (SP) and SMS gateway (SMSGW). text2reach2 SMS API Sep 5, 2013 v1.1 This document describes application interface (API) between SMS service provider (SP) and SMS gateway (SMSGW). Table of Contents API Interface Types...3 Bulk SMS interface...3

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

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

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

API Integration Guide

API Integration Guide API Integration Guide Introduction SULU Mobile Solutions API is a programmable SMS message service. It enables your in-house applications to have fully featured SMS capabilities using your favorite programming

More information

API-SMS HTTP/POST Interface Ref Push SMS, Balance, ACKs. April 18, 2017 v2.15

API-SMS HTTP/POST Interface Ref Push SMS, Balance, ACKs. April 18, 2017 v2.15 Ref. 17041801 - Push SMS, Balance, ACKs. Index Page 1 Introduction 3 1.1 Changelog 3 2 Send SMS messages (MT) 4 2.1 Required information 4 2.2 HTTP/POST Messaging 4 2.3 XML format 4 2.4 XML examples 7

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

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

Redrabbit Cloud-based Communications Platform SMS APIs

Redrabbit Cloud-based Communications Platform SMS APIs Redrabbit Cloud-based Communications Platform SMS APIs Prepared by US Office 8530 Crows Ct. Tampa, Florida 33647 Jordan Office Adnan Halawa Center, Industrial Road Biader Wadi AL-Seer Amman Jordan www.javna.com

More information

Password Management Guidelines for Cisco UCS Passwords

Password Management Guidelines for Cisco UCS Passwords Guidelines for Cisco UCS Passwords, page 1 Guidelines for Cisco UCS Usernames, page 3 Configuring the Maximum Number of Password Changes for a Change Interval, page 4 Configuring a No Change Interval for

More information

All requests must be authenticated using the login and password you use to access your account.

All requests must be authenticated using the login and password you use to access your account. The REST API expects all text to be encoded as UTF-8, it is best to test by sending a message with a pound sign ( ) to confirm it is working as expected. If you are having issues sending as plain text,

More information

SAP SMS 365, enterprise service SMTP Technical Specification October 2013

SAP SMS 365, enterprise service SMTP Technical Specification October 2013 SAP SMS 365, enterprise service SMTP Technical Specification October 2013 TABLE OF CONTENTS 1 INTRODUCTION... 5 2 SENDING SMTP MESSAGES... 5 2.1 MSISDN Section... 5 2.1.1 List... 5 2.2 Message Section...

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

Response: Note: Please define Dynamic Value in ##Field## The following are the parameters used: For Unicode Message:

Response: Note: Please define Dynamic Value in ##Field## The following are the parameters used: For Unicode Message: For Unicode Message: Promotional Unicode Message API http://cloud.smsindiahub.in/vendorsms/pushsms.aspx?user=youruserid&password=yourpassword& msisdn=919898xxxxxx&sid=senderid&msg=पर षण स द श &fl=0&dc=8

More information

ISO/IEC JTC 1/SC 35. User Interfaces. Secretariat: Association Française de Normalisation (AFNOR)

ISO/IEC JTC 1/SC 35. User Interfaces. Secretariat: Association Française de Normalisation (AFNOR) ISO/IEC JTC 1/SC 35 N 0748 DATE: 2005-01-31 ISO/IEC JTC 1/SC 35 User Interfaces Secretariat: Association Française de Normalisation (AFNOR) TITLE: Proposal for "Swedish International" keyboard SOURCE:

More information

API HTTP TECHNICAL DOCUMENTATION WEB-BASED SMS SENDING PLATFORM. Version Update: July 12th Mobile Marketing and Messaging Solutions

API HTTP TECHNICAL DOCUMENTATION WEB-BASED SMS SENDING PLATFORM. Version Update: July 12th Mobile Marketing and Messaging Solutions Mobile Marketing and Messaging Solutions WEB-BASED SMS SENDING PLATFORM API HTTP 12/05/2015 1:50PM Hello. Your order ref: 123456 is ready for pickup at your Relay Point 10 Amiens Street, 75002 Paris. Please

More information

PlainDSP M2M Communication Experimental Details This document describes the machine-to-machine (M2M) communication experiments using PlainDSP.

PlainDSP M2M Communication Experimental Details This document describes the machine-to-machine (M2M) communication experiments using PlainDSP. 1 PlainDSP M2M Communication Experimental Details This document describes the machine-to-machine (M2M) communication experiments using PlainDSP. Introduction The PlainDSP kit can be used to recognize frequency

More information

Postman User Guide. Document Reference: July Version: 2

Postman User Guide. Document Reference: July Version: 2 Postman User Guide Document Reference: 8314 July 2017 Version: 2 Version Number Date Author Changes 1 Sep 2015 Sam Smith 2 Jul 2017 Sam Smith Branding updated Page 1 Contents 1 Introduction... 3 2 Downloading...

More information

Integrating with Cellsynt's SMS gateway via HTTP interface (technical documentation)

Integrating with Cellsynt's SMS gateway via HTTP interface (technical documentation) Integrating with Cellsynt's SMS gateway via HTTP interface (technical documentation) Integrating with Cellsynt's SMS gateway via HTTP interface (technical documentation) Table of Contents Part I Introduction

More information

Character Entity References in HTML 4 and XHTML 1.0

Character Entity References in HTML 4 and XHTML 1.0 1 of 12 2/2/2009 2:55 PM Character References in HTML 4 and XHTML 1.0 Here is a set of tables containing the 252 allowed entities in HTML 4 and XHTML 1.0, as described in section 24 of the official HTML

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

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

Quriiri HTTP MT API. Quriiri HTTP MT API v , doc version This document describes the Quriiri HTTP MT API version 1 (v1).

Quriiri HTTP MT API. Quriiri HTTP MT API v , doc version This document describes the Quriiri HTTP MT API version 1 (v1). Quriiri HTTP MT API This document describes the Quriiri HTTP MT API version 1 (v1). Sending messages Request types Security Request parameters Request examples JSON POST GET Response JSON response example

More information

HTTP Interface API. for SMS Services. Version 2. Claude ICT Poland Sp. z o. o.

HTTP Interface API. for SMS Services. Version 2. Claude ICT Poland Sp. z o. o. Version 2 HTTP Interface API for SMS Services Claude ICT Poland Sp. z o. o. WWW.TELECUBE.PL Table of Contents 1. Foreword...2 2. Revision History...2 3. Introduction Please Note...3 a. Communication Protocol...

More information

Message parameter details

Message parameter details HTTP API for Message Forwarding (SMS India Hub Gateway Version 1.1) Overview... 2 Introduction... 2 Messaging... 3 Message parameter details... 4-7 Error Codes... 8 Contact Details... 9 Overview This document

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

PCCW mobile SMS Web Access 2.0 User Guide

PCCW mobile SMS Web Access 2.0 User Guide PCCW mobile SMS Web Access 2.0 User Guide Version 2.1.2 11 March 2011 Version: 2.1.2 Table of Content 1 Introduction... 4 2 General... 5 2.1 Getting started... 5 2.2 Login/Logout... 5 2.3 Switch between

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

ERMES. Technical Specification for ex MPAY services integration. version /10/2018

ERMES. Technical Specification for ex MPAY services integration. version /10/2018 ERMES Technical Specification for ex MPAY services integration version 1.7 26/10/2018 Summary 1.Changes...3 2.Introduction...4 2.1.Glossary...4 3.ERMES API Overview...5 3.1.Protocol...6 4.ERMES API...9

More information

The Use of Reserved (= Undefined) 1252 Code Page Slots in TrueType Fonts

The Use of Reserved (= Undefined) 1252 Code Page Slots in TrueType Fonts The Use of Reserved (= Undefined) 1252 Code Page Slots in TrueType Fonts Problem: How do you create a 1252 TrueType text font (= non-symbol font) with slots 128, 129, 141-144, 157-158, 173, 175, 181, 183,

More information

SMS API - Web Services with SSL SHA2 HMAC Version 1.7

SMS API - Web Services with SSL SHA2 HMAC Version 1.7 SMS API Web Services with SSL SHA2 HMAC Open API Version 1.7 Jul 2017 Technologies powered by Media Digital Technologies Corporation Limited. All rights Reserved. Copyrights 2003-2017 INTRODUCTION... 3

More information

ARTIO VM SMS Documentation

ARTIO VM SMS Documentation ARTIO VM SMS Documentation David Jozefov Michal Unzeitig Copyright 2013 - ARTIO International Co. ARTIO VM SMS Documentation ARTIO Publication date: 19.8.2013 Version: 1.0.0 Abstract This document describes

More information

Banner 8 Using International Characters

Banner 8 Using International Characters College of William and Mary Banner 8 Using International Characters A Reference and Training Guide Banner Support January 23, 2009 Table of Contents Windows XP Keyboard Setup 3 VISTA Keyboard Setup 7 Creating

More information

Handbook. CLIÉ handheld basic operations. Entering text on your CLIÉ. handheld. Exchanging and updating files/data using the HotSync operation

Handbook. CLIÉ handheld basic operations. Entering text on your CLIÉ. handheld. Exchanging and updating files/data using the HotSync operation A-BL0-100-11 (1) CLIÉ handheld basic operations Entering text on your CLIÉ handheld Exchanging and updating files/data using the HotSync operation Customizing your CLIÉ handheld (Preferences) Exchanging

More information

APPLESHARE PC UPDATE INTERNATIONAL SUPPORT IN APPLESHARE PC

APPLESHARE PC UPDATE INTERNATIONAL SUPPORT IN APPLESHARE PC APPLESHARE PC UPDATE INTERNATIONAL SUPPORT IN APPLESHARE PC This update to the AppleShare PC User's Guide discusses AppleShare PC support for the use of international character sets, paper sizes, and date

More information

Forthnet Mobile Platform - groupsms http interface v1.0 1 / 9

Forthnet Mobile Platform - groupsms http interface v1.0 1 / 9 Table of Contents Introduction... 2 Requirements... 2 Connecting to Forthnet Mobile Platform... 2 Message submission... 3 Client Request... 3 Parameters... 4 Parameter user... 4 Parameter pass... 4 Parameter

More information

Onboarding guide for new gtlds operated by Afnic

Onboarding guide for new gtlds operated by Afnic ONBOARDING GUIDE FOR NEW GTLDS OPERATED BY AFNIC July 23 rd, 2013 1 Onboarding guide for new gtlds operated by Afnic.alsace,.aquitaine,.bzh,.corsica,.paris - Version 1 - July 23rd, 2013 ONBOARDING GUIDE

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

Reseller Web Site Instructions Manual

Reseller Web Site Instructions Manual Reseller Web Site Instructions Manual CONTENTS 1. WHY USE OUR RESELLER WEB SITE TO SELL SMS? GENERAL INFORMATION ON OUR RESELLER WEB SITE.... 4 2. HOW CAN I HAVE MY OWN RESELLER WEB SITE? DETAILS WE NEED

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

To SMS Technical Guide

To SMS Technical Guide Email To SMS Technical Guide Table of Content 1 Document information 3 1.1 Purpose 3 1.2 Change history 3 1.3 Release notes 3 1.4 Contact 3 2 Introduction 4 2.1 Overview 4 2.2 Main features 4 2.3 Email

More information

Cloud SMS API Guide. Version 5.1

Cloud SMS API Guide. Version 5.1 Cloud SMS API Guide Version 5.1 Cloud API Guide v5.1 Page 1 of 18 Table of Content 1 Overview 1 2 MACH Push Messaging 2 3 MT API Details 3 3.1 Send Message 3 3.2 Send Long Concatenated Messages 8 4 MO

More information

Overview Introduction Messaging Error Codes Message parameter details Contact Details... 7

Overview Introduction Messaging Error Codes Message parameter details Contact Details... 7 HTTP API for Message Forwarding (SMS Lane Gateway Version 1.1) Overview... 2 Introduction... 2 Messaging... 3 Error Codes... 4 Message parameter details... 5-6 Contact Details... 7 1/7 Overview This document

More information

This file contains an excerpt from the character code tables and list of character names for The Unicode Standard, Version 3.0.

This file contains an excerpt from the character code tables and list of character names for The Unicode Standard, Version 3.0. Range: This file contains an excerpt from the character code tables and list of character names for The Unicode Standard, Version.. isclaimer The shapes of the reference glyphs used in these code charts

More information

APPENDIX 1 BRAILLE SYMBOLS AND INDICATORS. Braille Characters Letters Numbers Contractions Indicators Punctuation and Symbols

APPENDIX 1 BRAILLE SYMBOLS AND INDICATORS. Braille Characters Letters Numbers Contractions Indicators Punctuation and Symbols Appendix 1 Page 1 APPENDIX 1 BRAILLE SYMBOLS AND INDICATORS Braille Characters Letters Numbers Contractions Indicators Punctuation and Symbols Within each group, the braille signs are listed in alphabetic

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

API SMS Sending 1. ACCOUNT METHOD GET

API SMS Sending 1. ACCOUNT METHOD GET API SMS Sending Identidad Telecom This guide contains support material and information property of Identidad Telecom Technologies. This material can be printed or photocopied for its intended us, and the

More information

Gatesms.eu Mobile Solutions for Business

Gatesms.eu Mobile Solutions for Business TECHNICAL SPECIFICATIONS XML Web API GATESMS.EU, version 1.1 Prepared by: Gatesms.eu Contents Document version history...3 Security...3 General requirements...3 HTTP transmission security mechanism...3

More information

AMERICAN EXPRESS GLOBAL FINANCIAL SETTLEMENT GUIDE OCTOBER 2010

AMERICAN EXPRESS GLOBAL FINANCIAL SETTLEMENT GUIDE OCTOBER 2010 AMERICAN EXPRESS GLOBAL FINANCIAL SETTLEMENT GUIDE OCTOBER 2010 GLOBAL MERCHANT SERVICES Copyright 2004-2010 American Express Travel Related Services Company, Inc. All rights reserved. This document contains

More information

Zeichen-Referenztabelle (1-127)

Zeichen-Referenztabelle (1-127) Zeichen-Referenztabelle (1-127) Die ersten 31 Zeichen sind für Steuerbefelhle des Computers reserviert (z. B. Druckerkommunikation) und sind deshalb nicht belegt. Die Zeichen 32 127 sind auf PC- und MAC-Systemen

More information

Information technology Coded graphic character set for text communication Latin alphabet

Information technology Coded graphic character set for text communication Latin alphabet Reference number of working document: ISO/IEC JTC1/SC2/WG3 N L2/98-376 Date: 1998-11-04 Reference number of document: ISO/IEC CD 6937 Committee identification: ISO/IEC JTC1/SC2 Secretariat: IPSJ/ITSCJ

More information

Handbook. Sony CLIÉ handheld basic operations. Entering data on your Sony CLIÉ. handheld. Exchanging and updating data using a HotSync operation

Handbook. Sony CLIÉ handheld basic operations. Entering data on your Sony CLIÉ. handheld. Exchanging and updating data using a HotSync operation A-BG5-100-11 (1) Sony CLIÉ handheld basic operations Entering data on your Sony CLIÉ handheld Exchanging and updating data using a HotSync operation Customizing your Sony CLIÉ handheld (Preferences) Exchanging

More information

RouteMobile Mobile Client Manual for Android Version: 2.0

RouteMobile Mobile Client Manual for Android Version: 2.0 RouteMobile Mobile Client Manual for Android Version: 2.0 Route Mobile Limited 2018. All rights reserved 1 Contents Installation... 3 Getting Started... 5 Login Page... 6 Main Screen... 7 Send SMS... 9

More information

Service Segment Version 3

Service Segment Version 3 Message Implementation Service Segment Version 3 Rev 2000-02-01 Swedish Bankers Association Svenska Bankföreningen sed96a-e.xxx 20 August 1998 ver 2.0 Page 1 Revisions - Service segments Date: Changes:

More information

Integration Guide Xura Messaging SMTP- Interface

Integration Guide Xura Messaging SMTP- Interface Integration Guide Xura Messaging SMTP- Interface Version 1.3.0 Content is subject to change Xura Secure Communications GmbH Tel.: +49 89 201 727 0 e-mail.: asc-support@xura.com All rights reserved. This

More information

msolutions Messenger Customization Options

msolutions Messenger Customization Options msolutions Messenger msolutions Messenger is a Windows based application designed for sending bulk SMS traffic via a user-friendly interface, allowing for detailed customization options and great control

More information

TELIA OPERATOR SERVICE PLATFORM

TELIA OPERATOR SERVICE PLATFORM TELIA OPERATOR SERVICE PLATFORM OMA Authorization REST API Guide Copyright 2017 Aepona Limited, and copyright 2017 Telia All rights reserved by respective owners. Revision: 6.0 Legal Information Legal

More information

SMS-Bulk Gateway HTTP interface

SMS-Bulk Gateway HTTP interface SMS-Bulk Gateway HTTP interface Release 3.0.0 2001-2017 SmsItaly.Com 1 1 Introduction 1.1 Summary Only authorized users can submit SMS messages for delivery by one of the following methods: - Internet

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

SMS HTTP API DOCUMENTATION December 2012

SMS HTTP API DOCUMENTATION December 2012 SMS HTTP API DOCUMENTATION December 2012 TABLE OF CONTENTS 1.0) INTRODUCTION 3 2.0) SENDING NORMAL TEXT MESSAGES 4 3.0) SENDING UNICODE (UCS2) MESSAGES (MULTILINGUAL) 5 4.0) SENDING UDH HEADER MESSAGES

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

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

USSD HTTP API SPECIFICATION Version 1.0 Teletalk Bangladesh Limited

USSD HTTP API SPECIFICATION Version 1.0 Teletalk Bangladesh Limited USSD HTTP API SPECIFICATION Version 1.0 Teletalk Bangladesh Limited Latest version of this document can be obtained from: http://www.nixtecsys.com/ussd/ugw- teletalk- http- api.pdf 2 This page has been

More information

HTTPS File Transfer. Specification

HTTPS File Transfer. Specification HTTPS File Transfer Specification Version 1.4 5-Apr-2017 Date Version Description 30-Aug-2010 1.0 Original Version 30-Jun-2011 1.1 Added FAQ 29-Jun-2015 1.2 ilink administration added 1-Sep-2015 1.3 Updated

More information

K5 Portal User Guide

K5 Portal User Guide FUJITSU Cloud Service K5 K5 Portal User Guide Version 2.6 FUJITSU LIMITED Preface Purpose of This Document This guide describes the operating procedures for the services provided by FUJITSU Cloud Service

More information

Integrating with ClearPass HTTP APIs

Integrating with ClearPass HTTP APIs Integrating with ClearPass HTTP APIs HTTP based APIs The world of APIs is full concepts that are not immediately obvious to those of us without software development backgrounds and terms like REST, RPC,

More information

cellip CELLIPS SMS INTERFACE DESCRIPTION HTTP GET INNEHÅLLSFÖRTECKNING

cellip CELLIPS SMS INTERFACE DESCRIPTION HTTP GET INNEHÅLLSFÖRTECKNING INNEHÅLLSFÖRTECKNING Innehållsförteckning... 1 1 Introduction... 2 1.1 Scope... 2 2 HTTP Get interface... 2 2.1 Mobile Terminated Messages... 2 2.1.1 Usage... 2 2.1.2 Parameters... 2 2.1.3 Codes... 4 2.1.4

More information

HTTP API. https://www.smsn.gr. Table of Contents

HTTP API. https://www.smsn.gr. Table of Contents HTTP API https://www.smsn.gr Table of Contents Send SMS...2 Query SMS...3 Multiple Query SMS...4 Credits...5 Save Contact...5 Delete Contact...7 Delete Message...8 Email: sales@smsn.gr, Τηλ: 211 800 4200,

More information

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 08 Tutorial 2, Part 2, Facebook API (Refer Slide Time: 00:12)

More information

XML API SMS GATEWAY. Issue 2.0 Dec XML API

XML API SMS GATEWAY. Issue 2.0 Dec XML API XML API SMS GATEWAY Issue 2.0 Dec 2016 1 XML API XML API INTRODUCTION The XML API allows sending SMS through XML queries to our SMS Gateway. The SMS Gateway can be used for sending following types of SMS.

More information

WebSMS 5.0. User Guide. June 2011

WebSMS 5.0. User Guide. June 2011 WebSMS 5.0 User Guide June 2011 Revision History Version Date Version History 3.0 Apr, 21 2010 Document Released 3.1 Jun, 22 2010 Updated some screen shots 4.0 Aug, 5 2010 Added the following features

More information

SMS Pro/Billing Pro. Interface specification. Version 3.0.1

SMS Pro/Billing Pro. Interface specification. Version 3.0.1 SMS Pro/Billing Pro Interface specification Version 3.0.1 Copyright Telenor Sverige AB 2008 Contents: 1 Introduction... 3 2 Protocols for interconnection... 3 3 Content format... 3 4 XML References...

More information

API Documentation. Release Version 1 Beta

API Documentation. Release Version 1 Beta API Documentation Release Version 1 Beta Document Version Control Version Date Updated Comment 0.1 April 1, 2016 Initialize document 1 Release version PROMOTEXTER V3 BETA - API Documentation 1 Table of

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

Quenbec inc # henri bourassa H3L-3N3 Montreal, QC,Canada Toll free: Mobile Https://canadiansms.

Quenbec inc # henri bourassa H3L-3N3 Montreal, QC,Canada Toll free: Mobile Https://canadiansms. HTTP PROTOCOL SPECIFICATIONS VERSION 3.0 Contents Http api of canadiansms.com.....what to find in this http api...how to send sms....how to check your credits.....how to download your reports....how to

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

file://h:\cc51\private\jtc%201%20sc%2022\abstract1.htm

file://h:\cc51\private\jtc%201%20sc%2022\abstract1.htm Page 1 of 1 From: Mailbox ITTF [ittf@iso.org] Sent: Thursday, March 21, 2002 8:10 AM To: Lisa Rajchel; Jean Stride; Mann Douglas D; FRANCE.LAFARGUE; Jean-Normand Drouin; Sara Hafele; Yukiko Ogura; Jooran

More information

GSM GSM TECHNICAL March 1996 SPECIFICATION Version 5.1.0

GSM GSM TECHNICAL March 1996 SPECIFICATION Version 5.1.0 GSM GSM 03.38 TECHNICAL March 1996 SPECIFICATION Version 5.1.0 Source: ETSI TC-SMG Reference: TS/SMG-040338QR ICS: 33.060.50 Key words: Digital cellular telecommunications system, Global System for Mobile

More information

Instructions for Using New API. Instructions for Using New API

Instructions for Using New API. Instructions for Using New API Instructions for Using New API Instructions for Using New API I Change Logs Version 1.0 2016-12-8 1. Add request_status_report parameter to SMS request; 2. Add pushing feature; 3. Add slot, callstate,

More information

Orientalistic cuneiform

Orientalistic cuneiform Transliteration keyboard Orientalistic cuneiform (c) 2009 Alfredo Rizza 1 Direct keys The standard charset UNICODE compatible with ANSI ISO-8859-1 is provided without resorting to dead keys through AltGr

More information

{c,} c 00E7 ç &ccedil LATIN SMALL LETTER C WITH CEDILLA {'e} e 00E8 è &egrave LATIN SMALL LETTER E WITH GRAVE {e'} e 00E9 é &eacute LATIN SMALL

{c,} c 00E7 ç &ccedil LATIN SMALL LETTER C WITH CEDILLA {'e} e 00E8 è &egrave LATIN SMALL LETTER E WITH GRAVE {e'} e 00E9 é &eacute LATIN SMALL Non-ASCII Symbols in the SCA Armorial Database by Iulstan Sigewealding, updated by Herveus d'ormonde 4 January 2014 PDF Version by Yehuda ben Moshe, 16 February 2014 Since January 1996, the SCA Ordinary

More information

HTTP Based Unified API

HTTP Based Unified API HTTP Based Unified API SMS GATEWAY Issue 5.0 June 2017 1 HTTP Based Unified API HTTP ACCESS MODEL INTRODUCTION The platform exposes a HTTP interface to its SMS Gateway. The SMS Gateway can be used for

More information

PageOne SOAP Web Services

PageOne SOAP Web Services PageOne SOAP Web Services Web Services API Version 1.10 The information contained within this document is the property of PageOne Communications Ltd and may not be copied used or disclosed in whole or

More information

Future Pay MCB API. Version

Future Pay MCB API. Version Future Pay MCB API Version 03 2014-02-11 Contents Contents... 2 1. Document history... 3 2. Scope and intended audience... 3 3. Communication with Future Pay... 4 3.1 overview... 4 3.2 Request... 6 3.3

More information

Attacking Next- Generation Firewalls

Attacking Next- Generation Firewalls Attacking Next- Generation Firewalls Breaking PAN-OS Felix Wilhelm #whoami Security Researcher @ ERNW Research Application and Virtualization Security Recent Research Hypervisors (Xen) Security Appliances

More information

API ONE-TIME PASSWORD

API ONE-TIME PASSWORD Mobile Marketing and Messaging Solutions WEB-BASED SMS SENDING PLATFORM Guide du débutant API ONE-TIME PASSWORD UTILISER LA PLATEFORME SMSMODE DOCUMENTATION WHAT OTP API? Our OTP (One Time Password) solution

More information

HLR Lookup Service (Release 1.1.0)

HLR Lookup Service (Release 1.1.0) 1. Introduction 1.1. Summary This document will illustrate the HLR Lookup Service (or Network Query) 1.2. Scope The information contained in this document may be used by all third parties that need to

More information

Merchant Portal User Guide

Merchant Portal User Guide Merchant Portal User Guide TABLE OF CONTENTS Accessing the Click Merchant Portal... 3 Virtual Terminal... 4 Single Entry (Merchant Enters Card Details)... 5 Payment Using Collected Card Details... 5 Payment

More information

Pro Solutions Interface specification

Pro Solutions Interface specification Interface specification Version 3.1.0 Copyright Telenor Sverige AB 2010 Contents: 1 Introduction...3 2 Protocols for interconnection...3 3 Content format...3 4 XML References...4 5 Abbreviations...4 6

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

IaaS API Reference (Management Administration)

IaaS API Reference (Management Administration) FUJITSU Cloud Service K5 IaaS API Reference (Management Administration) Version 1.18 FUJITSU LIMITED All Rights Reserved, Copyright FUJITSU LIMITED 2015-2018 K5IA-DC-M-001-001E Preface Structure of the

More information

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

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

More information

SMS4BD Gateway Integration

SMS4BD Gateway Integration SMS4BD Gateway Integration TECHNICAL DOCUMENTATION v3.0 This document is intended to help IT experts in integration of SMS gateway of SMS4BD. Any alteration of this document without permission is strictly

More information