MCB Gateway. 1 Introduction. 2 Change history. 3 Table of contents

Size: px
Start display at page:

Download "MCB Gateway. 1 Introduction. 2 Change history. 3 Table of contents"

Transcription

1 MCB Gateway 1 Introduction This document describes the communication interface (API) of our Mobile Content Billing (MCB/DB) gateway called FuturePay. This technical document is meant for system engineers that want to integrate Direct Billing for an online product or campaign. A national appendix can overrule or add additional mandatory as well as optional parameters required for specifc countries in requests and responses. It is an addition to this document for that specific country. 2 Change history Version Date Comment Current Version (v. 3) Jan 12, :00 Kenneth Bhadjoe v. 2 Dec 06, :37 Peter Paul Keulers v. 1 Oct 09, :43 Kenneth Bhadjoe 3 Table of contents 1 Introduction 2 Change history 3 Table of contents 4 Communication 4.1 Overview 4.2 Control panel 4.3 IP addresses 4.4 Workflow 4.5 Request 4.6 Response 5 Single Payment 5.1 Request 5.2 Response parameters on returnurl 5.3 Response parameters on errorurl 6 Start Subscription 6.1 Request 6.2 Response parameters on returnurl 6.3 Response parameters on errorurl 7 Stop Subscription 7.1 Request 7.2 Response 8. Check Subscription 8.1 Request 8.2 Response 9 Identification 9.1 Request 9.2 Response 10 Asynchronous Notifications 10.1 Start notifications 10.2 Charge notification 10.3 Stop notification 11 Status codes 12 HMAC calculation 13 Graphical examples 13.1 Start workflow 13.2 Stop workflow Copyright Globway B.V. - Spoorhaven AV - Berkel en Rodenrijs Page 1

2 4 Communication 4.1 Overview The gateway can be reached using the URL below using (secure) HTTP GET and POST methods: http(s)://futurepay.globway.eu/mcb/in 4.2 Control panel Clients have access to the gateway Control Panel via URL: http(s)://admin.futurepay.globway.eu This Control Panel enables you to configure settings related to the individual services that allow you to facilitate Mobile Content Billing in a country. The most important settings you can configure are found in the table below: Parameter Return URL Error URL Notification URL Wifi URL Sms URL Description Client is returned here on successfull Payment or Subscripton Client is returned here if any error occured Asynchronous notifications, start, charge and stop Not for every country, usually refers to the MSISDN entry page Not for every country, usually refers to the PIN entry page 4.3 IP addresses The gateway performs asynchronous requests from the following IP addresses: / Workflow FuturePay recognizes the following request types. Requesttype single start stop check identify Desscription One TIme Payment Start a subscription Stop a subscription Get subscription info Identifying the end user, see if already subscribed The client application must interpret the response and decide what to do after performing an action. The response after calling the URL is explained in section 4.6 Response. In particular, upon success ( statuscode=0), the response will contain a unique URL. The client is supposed to call it, or redirect a visitor to this unique URL. This is dependent on the parameter urlcall contained in the response. If the statuscode in a response is not zero, this indicates an error and the client should check the value against the status codes illustrated in the table in chapter 11. Due to the nature of Mobile Content Billing, the gateway will sometimes be called from the client platform and sometimes from the mobile device of the end user. For identification of the end user, the mobile is redirected to URLs which are 'out of reach' of the FuturePay platform (most of the time this concerns redirects to operator webpages for identification purposes). Copyright Globway B.V. - Spoorhaven AV - Berkel en Rodenrijs Page 2

3 After a dialog between the mobile device of the end user and FuturePay/mobile operators on the other side, the gateway will transmit the outcome of this identification process. These callbacks will contain information using parameter-value pairs in the URL (GET). The gateway also provides asynchronous notifications. The table below describes the response the client application can expect from FuturePay. If Response after call/redirect to URL Parameters urlcall=http Synchronous XML format urlcall=redir Synchronous, redirect to the url in the response HTTP GET method notification Asynchronous HTTP GET method Every response and every notification contains an rid (Request ID). The rid in a synchronous response can be stored by the client to match future asynchronous responses or notifications. Some notifications will contain a unique rid, those notifications are the result of events that occur outside of the workflow described above. Examples are: notifications of charges for subscriptions done by the gateway (rebillings) and stop notifications if an end user triggers this stop via an external website/platform. Every asynchronous response contains an HMAC-value. This value is the result of an algorithm that takes all parameters of the response as well as a secret key that is only known by the gateway and the client. This allows verification of the parameters in a response from the gateway. Clients should check the authenticity of the parameter values in order to prevent abuse and errors when performing calls to the gateway. If the response supplied by FuturePay is an XML response clients must process all parameters contained in the <FP> -tag inside the body of the page. 4.5 Request FuturePay URL A request must be performed to the URL specified below: Required parameters username string 32 Client username provided by Globway password string 32 Client password provided by Globway service string 32 Application service provided by Globway requesttype enum single, start, stop, check, identify Optional parameters One time payment Start a subscription Stop a subscription Get the subscription details Lookup if-which subscription ID a visitor has returnurl string 1000 After a successful request, you will be redirected to the returnurl Default: as configured in FuturePay Control Panel errorurl string 1000 After an unsuccessful request, you will be redirected to the errorurl Example Default: as configured in FuturePay Control Panel Response The response is in XML format. Copyright Globway B.V. - Spoorhaven AV - Berkel en Rodenrijs Page 3

4 statuscode integer See section 11 Status codes reason string 250 See section 11 Status codes urlcall string http, redirect http: send http request to FuturePay redirect: redirect to FuturePay url string 255 New request to this URL Example <?xml version="1.0" encoding="utf-8"?> <FP> <statuscode>0</ statuscode> <reason>ok</ reason> <rid>r160</rid> <urlcall>http</urlcall> <url> </FP> 5 Single Payment 5.1 Request Optional Parameters marketingkey string 250 Key to recognize your marketing channel Default: service The direct, synchronous response is described in section 4.6 Response. 5.2 Response parameters on returnurl The returnurl is called after a successful request. marketing key string 250 Your own given marketing key (default 'service') pid string 32 Unique payment ID 5.3 Response parameters on errorurl The errorurl is called if the request is cancelled or an error occurs. marketingkey string 250 Your own given marketing key (default 'service') statuscode integer See section 11 Status codes Copyright Globway B.V. - Spoorhaven AV - Berkel en Rodenrijs Page 4

5 6 Start Subscription This request is done to start a new subscription for a visitor. 6.1 Request Optional Parameters marketingkey string 250 Key to recognize your marketing channel Default: service The direct, synchronous response is described in section 4.6 Response. 6.2 Response parameters on returnurl The response is in XML format. marketing key string 250 Your own given marketing key (default 'service') sid string 32 Unique subscription ID 6.3 Response parameters on errorurl marketingkey string 250 Your own given marketing key (default 'service') statuscode integer See section 11 Status codes 7 Stop Subscription This request is performed to stop an active subscription for a visitor. 7.1 Request Required Parameters sid string 32 Unique subscription ID which one belongs to the start subscription The direct, synchronous response is described in section 4.6 Response. 7.2 Response Copyright Globway B.V. - Spoorhaven AV - Berkel en Rodenrijs Page 5

6 The response is in XML format. statuscode integer See 11 Status codes reason string 250 See 11 Status codes 8. Check Subscription This request is performed to check whether a visitor has an active subscription. 8.1 Request Required Parameters sid string 32 Unique subscription ID which one belongs to the start subscription 8.2 Response The response is in XML format. Parameter Type Length Optional Description statuscode integer See 11 Status codes reason string 250 See 11 Status codes marketingkey string 250 Your own given marketing key (default 'service') sid string 32 Subscription ID tariff integer 5 Tariff in cents msisdn string 64 The MSISDN of the visitor mccmnc string 8 Yes Provider code of mobile user mccmnc_payment string 8 Yes Payment provider code of mobile user time_start datetime Subscription start time time_stop datetime Yes Subscription stop time time_charge datetime Yes Subscription last charge attempt time_charge_success datetime Yes Subscription last successful charge Example Copyright Globway B.V. - Spoorhaven AV - Berkel en Rodenrijs Page 6

7 <?xml version="1.0" encoding="utf-8"?> <FP> <rid>r160</rid> <marketingkey>banner Globway</marketingkey> <sid>r320</sid> <tariff>499</tariff> <msisdn> </msisdn> <mccmnc>26201</mccmnc> <mccmnc_payment>26201</mccmnc_payment > <time_start> :00:00</ time_start> <time_stop> :00:00</ time_stop> <time_charge> :00:00</ time_charge> <time_charge_success> :00:00</ time_charge_success> </FP> 9 Identification This request is performed to identify a visitor. 9.1 Request No additional parameters. 9.2 Response The response is in XML format. sid string 32 Unique subscription ID 10 Asynchronous Notifications These notifications are sent to the notification URL that is set for your service in the gateway Start notifications Parameter Type Length Optional Description marketingkey string 250 Your own given marketing key (default 'service') sid string 32 Subscription ID tariff integer 5 Tariff in cents time_start datetime Subscription start time notification_type string start Notification type: In this case 'start' Example Copyright Globway B.V. - Spoorhaven AV - Berkel en Rodenrijs Page 7

8 <?xml version="1.0" encoding="utf-8"?> <FP> <rid>r160</rid> <marketingkey>banner Globway</marketingkey> <sid>r320</sid> <tariff>499</tariff> <time_start> :00:00</ time_start> <notification_type>start</notification_type> </FP> 10.2 Charge notification Parameter Type Length Optional Description marketingkey string 250 Your own given marketing key (default 'service') pid string 32 Payment ID sid string 32 Subscription ID tariff integer 5 Tariff in cents msisdn string 64 Yes MSISDN if available mccmnc string 8 Yes Provider code of mobile user mccmnc_payment string 8 Yes Payment provider code of mobile user time_start datetime Subscription start time time_stop datetime Yes Subscription stop time time_charge datetime Subscription last charge attempt time_charge_success datetime Yes Subscription last successful charge notification_type string charge Notification type: in this case 'charge' statuscode integer 4 See 11 Status codes Example <?xml version="1.0" encoding="utf-8"?> <FP> <rid>r160</rid> <marketingkey>banner Globway</marketingkey> <sid>r320</sid> <tariff>499</tariff> <msisdn> </msisdn> <mccmnc>26201</mccmnc> <mccmnc_payment>26201</mccmnc_payment > <time_start> :00:00</ time_start> <time_stop> :00:00</ time_stop> <time_charge> :00:00</ time_charge> <time_charge_success> :00:00</ time_charge_success> <notification_type>charge</notification_type> <statuscode>0</statuscode> </FP> 10.3 Stop notification Parameter Type Length Optional Description marketingkey string 250 Yes Your own given marketing key (default 'service') sid string 32 Subscription ID Copyright Globway B.V. - Spoorhaven AV - Berkel en Rodenrijs Page 8

9 tariff integer 5 Tariff in cents msisdn string 64 Yes MSISDN if available mccmnc string 8 Yes Provider code of mobile user mccmnc_payment string 8 Yes Payment provider code of mobile user time_start datetime Subscription start time time_stop datetime Subscription stop time time_charge datetime Subscription last charge attempt time_charge_success datetime Yes Subscription last successful charge notification_type string stop Notification type: in this case 'stop' statuscode integer 4 See chapter 11 Status codes Example <?xml version="1.0" encoding="utf-8"?> <FP> <rid>r160</rid> <marketingkey>banner Globway</marketingkey> <sid>r320</sid> <tariff>499</tariff> <msisdn> </msisdn> <mccmnc>26201</mccmnc> <mccmnc_payment>26201</mccmnc_payment > <time_start> :00:00</ time_start> <time_stop> :00:00</ time_stop> <time_charge> :00:00</ time_charge> <time_charge_success> :00:00</ time_charge_success> <notification_type>stop</notification_type> <statuscode>0</statuscode> </FP> 11 Status codes Statuscode Reason Description 0 OK 1 [PARAMETER] Parameter is missing 2 Credentials incorrect 3 [PARAMETER VALUE] Requesttype incorrect 4 [HASH VALUE] Hash incorrect 5 Subscription not found 6 IP not allowed 7 [SERVICE VALUE] Service incorrect 99 [HTTP ERROR CODE] Technical error 900 Payment cancelled 901 Prepaid MS has not enough credit 902 MS disabled for premium services 903 Destination invalid 904 Already subscribed Copyright Globway B.V. - Spoorhaven AV - Berkel en Rodenrijs Page 9

10 905 Internal server error 906 Temporary error at carrier side 907 Unspecified error 908 Payment failed 909 Billing in process 910 MS recognition failed 12 HMAC calculation The HMAC calculation in asynchronous responses from the gateway are done using the parameters supplied by the gateway itself. Parameters supplied by the client in the URL are not included in the calculation. <?php function my_hmac($secret) { $tmp = $_GET; unset($tmp['hmac']); ksort($tmp); if (hash_hmac('sha1', http_build_query($tmp), $secret) == $_GET['hmac']) { return true; } else { return false; } } // validate a asynchronous response $secret = 'ABCDEF';//secret key supplied by FuturePay if (my_hmac($secret)) { // handle the authentic asynchronous FuturePay response } else { // handle the hack } 13 Graphical examples 13.1 Start workflow Copyright Globway B.V. - Spoorhaven AV - Berkel en Rodenrijs Page 10

11 1. End-User lands on Landing Site, Clicks on the banner/subscribe button. 2. Client performs a start request at the gateway. 3. The gateway responds with an XML response. 4. Client redrects to the URL provided by the gateway (in the response). 5. The gateway redirects the end user to the operator. 6. The operator redirects the end user back to the gateway. Note step 5 and 6 can be repeated a number of times depending on country/operator. 7. The end user lands on payment page and confirms subscription. Copyright Globway B.V. - Spoorhaven AV - Berkel en Rodenrijs Page 11

12 8. The operator redirects the end user to the gateway 9. The gateway redirects the end user to the returnurl specified by the client. 10. The client grants the user access to content. 11. Later, in an asynchronous fashion, the operator sends a notification with the new subscription information. 12. The gateway sends a start notification to the client. 13. Later, in an asynchronous fashion, the operator sends notification about charges. These are performed during the start of a subscription and for subscription rebillings. 14. The gateway sends a charge notification to the client Stop workflow 1. The end user lands on a website promoting a product or service for which he/she is subscribed and clicks on the unsubscribe link. 2. The client identifies the user and performs a stop request at the gateway (by communication a subscription ID). 3. The gateway gives an XML response with a URL to call. 4. The client performs a HTTP request to the specified URL. 5. The gateway performs the request to the operator. 6. The operator responds to the gateway. 7. The gateway sends an XML response to the client. 8. The operator sends a notification about the unsubscribe event. 9. The gateway sends a stop notification to the client 10. The client redirects the end user to the homepage of the product or service with a message stating the user has been unsubscribed. Copyright Globway B.V. - Spoorhaven AV - Berkel en Rodenrijs Page 12

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

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

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

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

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

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

Grandstream Networks, Inc. Captive Portal Authentication via Twitter

Grandstream Networks, Inc. Captive Portal Authentication via Twitter Grandstream Networks, Inc. Table of Content SUPPORTED DEVICES... 4 INTRODUCTION... 5 CAPTIVE PORTAL SETTINGS... 6 Policy Configuration Page... 6 Landing Page Redirection... 8 Pre-Authentication Rules...

More information

Updated September 2014

Updated September 2014 Updated September 2014 2014 GoPrint Systems, Inc., All rights reserved. CashNet Configuration Guide 1 CashNet Required Settings Prior to configuring your CashNet connector, the following information MUST

More information

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

User Guideline v 1.2. For assistance please contact Grapevine on or USSD User Guideline v 1.2 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 Head Office

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

Grandstream Networks, Inc. Captive Portal Authentication via Facebook

Grandstream Networks, Inc. Captive Portal Authentication via Facebook Grandstream Networks, Inc. Table of Content SUPPORTED DEVICES... 4 INTRODUCTION... 5 CAPTIVE PORTAL SETTINGS... 6 Policy Configuration Page... 6 Landing Page Redirection... 8 Pre-Authentication Rules...

More information

Home center SMS integration

Home center SMS integration Home center 2.7.3+ SMS integration The SMS functionality is available exclusively on the Home center interface Server (VMBHIS or HIS) More info http://www.homecenter.be Revision 02-08-2015 Home center

More information

Authentify SMS Gateway

Authentify SMS Gateway RSA SMS HTTP Plug-In Implementation Guide Last Modified: December 2 nd, 2014 Partner Information Product Information Partner Name Web Site Product Name Product Description Authentify www.authentify.com

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

Grandstream Networks, Inc. Captive Portal Authentication via Facebook

Grandstream Networks, Inc. Captive Portal Authentication via Facebook Grandstream Networks, Inc. Table of Content SUPPORTED DEVICES... 4 INTRODUCTION... 5 CAPTIVE PORTAL SETTINGS... 6 Policy Configuration Page... 6 Landing Page Redirection... 8 Pre-Authentication Rules...

More information

API Specification Doc

API Specification Doc API Specification Doc (SMS System Gateway) Version Date Description 1.0 01-Nov-2017 Initial draft 1.1 18-Feb-2018 Updated to include Delivery report call back options 1.2 10-Apr-2018 Appended API to include

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

Exostar Identity Access Platform (SAM) User Guide September 2018

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

More information

ideal QR - Merchant Implementation Guidelines (EN)

ideal QR - Merchant Implementation Guidelines (EN) ideal QR - Merchant Implementation Guidelines (EN) Version: 1.5 Date: 19-02-2018 Copyright Currence ideal B.V. All rights reserved. Page 1 of 16 Versions... version Adjustments 1.0 First version for extended

More information

Partner Integration API Details

Partner Integration API Details Partner Integration API Details Document Version 1.2 1 Table of Content 1.1 Communication Protocol... 1 1.2 Request XML... 1 1.3 Response XML... 1 2.1 Use Case 1: Wallet to Account / TIGO to Partner (Pay

More information

CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE

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

More information

Getting Started. Opening TM Control Panel. TM Control Panel User Guide Getting Started 1

Getting Started. Opening TM Control Panel. TM Control Panel User Guide Getting Started 1 TM Control Panel User Guide Getting Started 1 Getting Started Opening TM Control Panel To open TM Control Panel (CP), perform the following steps: 1 In the browser address field, type https://cp.netmyne.net.

More information

RSA Ready Implementation Guide for

RSA Ready Implementation Guide for RSA Ready Implementation Guide for Spryng Peter Waranowski, RSA Partner Engineering Last Modified: April 20 th, 2016 Solution Summary RSA Authentication Manager can be

More information

Exostar Identity Access Platform (SAM) User Guide July 2018

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

More information

Lateral Payment Solutions HPS

Lateral Payment Solutions HPS Lateral Payment Solutions HPS LPS Payment Gateway (HPS) Magento Payment Gateway allows you to accept payment on your Magento connect. LPS Payments supports Credit & Debit Cards on VISA & MASTERCARD card

More information

Payment Center API WEBFORM/GATEWAY MODE v2.6.2

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

More information

Vingd API for PHP Documentation

Vingd API for PHP Documentation Vingd API for PHP Documentation Release 1.7 Radomir Stevanovic, Vingd Inc. Jul 17, 2017 Contents 1 Vingd 3 1.1 Vingd API for PHP.......................................... 3 1.2 Installation..............................................

More information

Telenor Corporate Call & SMS. API Documentation

Telenor Corporate Call & SMS. API Documentation Telenor Corporate Call & SMS API Documentation Table of Contents 1. Authentication & Session ID... 1 2. Sending a Quick Message... 2 3. Query a Quick Message... 3 4. Create a Subscriber List... 4 5. Add

More information

Secure Access Manager User Guide December 2017

Secure Access Manager User Guide December 2017 Secure Access Manager User Guide December 2017 Copyright 2017 Exostar, LLC All rights reserved. 1 INTRODUCTION... 3 SUMMARY... 3 BASIC FUNCTIONS... 3 LOGIN TO YOUR SAM ACCOUNT... 3 How to Activate your

More information

BEAWebLogic RFID. Edge Server. Using the Administration Console

BEAWebLogic RFID. Edge Server. Using the Administration Console BEAWebLogic RFID Edge Server Using the Administration Console Version 2.1 Revised: June 29, 2006 Contents 1. Introduction and Roadmap Document Scope and Audience.............................................

More information

AvePoint Online Services 2

AvePoint Online Services 2 2 User Guide Service Pack 7 Issued August 2017 Table of Contents What s New in this Guide...6 About...7 Versions: Commercial and U.S. Government Public Sector...7 Submitting Documentation Feedback to AvePoint...8

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

AT&T Global Smart Messaging Suite

AT&T Global Smart Messaging Suite RSA SMS HTTP Plug-In Implementation Guide Partner Information Last Modified: April 30, 2012 Product Information Partner Name Web Site Product Name Product Description AT&T www.att.com/smartmessagingsuite

More information

XML Specification Paysafecard

XML Specification Paysafecard XML Specification Paysafecard This is a supplemental document to the main XML Specification document. Published: 27 September 2018 1.7 Table of Contents 1 Introduction... 3 1.1 About paysafecard... 3 1.2

More information

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin 1 P a g e Contents 1. Introduction... 5 2. Who is it for?... 6 3. Community v/s PRO Version... 7 3.1. Which version is

More information

CLIENT DASHBOARD. With Cloud Communication Solution (C.C.S).

CLIENT DASHBOARD. With Cloud Communication Solution (C.C.S). CLIENT DASHBOARD. CLIENT DASHBOARD Content CCS Presentation... 3 SMS... 3 Channels... 3 Requirement... 3 1.1 To read before connect... 4 1.2 Glossary of symbols... 5 1.3 CONNECTION... 6 1.3.1 Choice of

More information

Direct Carrier Billing technical documentation

Direct Carrier Billing technical documentation Direct Carrier Billing technical documentation ONE TIME AND SUBSCRIPTION PAYMENT EPŁATNOŚCI SP. Z O.O. SP. K. UL. 27 STYCZNIA 9 34-120 ANDRYCHÓW Table of Contents 1. Admission... 2 1.1 Direct Billing payment

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

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

CyberSource Global Payment Management for Magento 2

CyberSource Global Payment Management for Magento 2 CyberSource Global Payment Management for Magento 2 User s Guide Version 2.0.3 January 2018 January 2018 CyberSource Global Payment Management for Magento 2.x 1 Contents Recent Changes... 5 1. Introduction:...

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

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

JobFeed Push Services

JobFeed Push Services JobFeed Push Services Introduction This document describes the technical aspects of the Push Services supported by JobFeed. In general, two types of Push-Services are supported, both serving as a transport

More information

ComSignTrust Signer-1 SignFlow Integration API Document

ComSignTrust Signer-1 SignFlow Integration API Document ComSignTrust Signer-1 SignFlow Integration API Document Version: 1.8 Date: 10/10/2013 ComSignTrust TM LTD All rights reserved Version Writer Date Review by Version 0.9 Alex Raitskin, Daniel Gorelic 1.6.2012

More information

Grandstream Networks, Inc. Captive Portal Authentication via Facebook

Grandstream Networks, Inc. Captive Portal Authentication via Facebook Grandstream Networks, Inc. Table of Content SUPPORTED DEVICES... 4 INTRODUCTION... 5 CAPTIVE PORTAL SETTINGS... 6 Policy Configuration Page... 6 Landing Page Redirection... 9 Pre-Authentication Rules...

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

RapidIdentity Mobile Guide

RapidIdentity Mobile Guide RapidIdentity Mobile Guide Welcome to the RapidIdentity Mobile Component page. The RapidIdentity Mobile guide describes the installation and configuration options for the RapidIdentity Mobile application.

More information

Creating a trial Windows Azure account and activating MSDN benefits

Creating a trial Windows Azure account and activating MSDN benefits Creating a trial Windows Azure account and activating MSDN benefits What is Azure? In short, it s Microsoft s cloud platform: a growing collection of integrated services compute, storage, data, networking,

More information

Getting Started with Cloudamize Manage

Getting Started with Cloudamize Manage Getting Started with Cloudamize Manage This guide helps you getting started with Cloudamize Manage. Sign Up Access the Sign Up page for the Cloudamize Manage by: 1. Click the Login button on www.cloudamize.com

More information

Triveneto payment method for Magento 2

Triveneto payment method for Magento 2 Docs» Triveneto payment method for Magento 2 Triveneto payment method for Magento 2 This is the documentation for the Triveneto module for Magento 2, which integrates Magento 2 with the aforementioned

More information

Configuring Communication Services

Configuring Communication Services This chapter includes the following sections: Configuring HTTP, on page 1 Configuring SSH, on page 2 Configuring XML API, on page 3 Enabling Redfish, on page 3 Configuring IPMI, on page 4 Configuring SNMP,

More information

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373)

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373) SPARROW Gateway Custom Payment Redirect Version 3.2.0 (Build 7373) Released September 2016 Revision History Date Revision Comments Author 2015 06 09 1.0 Initial document created Blinova Alexandra 2 Table

More information

Important Notice. All company and brand products and service names are trademarks or registered trademarks of their respective holders.

Important Notice. All company and brand products and service names are trademarks or registered trademarks of their respective holders. Important Notice Magento reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products and services at any time and to discontinue any product or

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

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

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

TELIA OPERATOR SERVICE PLATFORM

TELIA OPERATOR SERVICE PLATFORM TELIA OPERATOR SERVICE PLATFORM Opaali Portal Guide Copyright 2017 Aepona Limited, and copyright 2017 Telia All rights reserved by respective owners. Revision: 6.1 Legal Information Legal Information This

More information

CMS Enterprise Portal User Manual

CMS Enterprise Portal User Manual Centers for Medicare & Medicaid Services CMS expedited Life Cycle (XLC) 11/13/2017 Document Number: Enterprise_Portal_User_Manual_v6 Table of Contents Table of Contents 1. Introduction... 1 2. Overview...

More information

Regions OnePass USER GUIDE. It s time to expect more. Regions Bank Member FDIC Revised

Regions OnePass USER GUIDE. It s time to expect more. Regions Bank Member FDIC Revised Regions OnePass USER GUIDE It s time to expect more. Regions Bank Member FDIC Revised 051616 User Guide Table of Contents Section I. Regions OnePass Basics 3 What Is Regions OnePass? 3 Minimum Browser

More information

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

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

More information

NIELSEN API PORTAL USER REGISTRATION GUIDE

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

More information

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide Adobe Document Cloud esign Services for Salesforce Version 17 Installation and Customization Guide 2015 Adobe Systems Incorporated. All rights reserved. Last Updated: August 28, 2015 Table of Contents

More information

Sophisticated Simplicity In Mobile Interaction. Technical Guide Number Information Services - Synchronous SOAP. Version 1.3

Sophisticated Simplicity In Mobile Interaction. Technical Guide Number Information Services - Synchronous SOAP. Version 1.3 Sophisticated Simplicity In Mobile Interaction Technical Guide Number Information Services - Synchronous SOAP Version 1.3 Table of Contents Page 1. Introduction to Number Information Services 3 4 2. Requirements

More information

E X O S T A R, LLC D A T E : M AY V E R S I O N : 4.0

E X O S T A R, LLC D A T E : M AY V E R S I O N : 4.0 SECURE ACCESS MAN AG E R USER GUI DE E X O S T A R, LLC D A T E : M AY 2 0 1 7 V E R S I O N : 4.0 1 S E C U R E AC C E S S M A N A G E R 1 INTRODUCTION... 3 1.1 SUMMARY... 3 2 BASIC FUNCTIONS... 3 2.1

More information

Technical Specification SOFORT Banking

Technical Specification SOFORT Banking Technical Specification SOFORT Banking (DEB.001) Author(s): Michel Westerink (MW) Version history: V1.2 MW (Overboeking) 20/08/14 V1.1 SvdV (gebruikersgemak) 20/08/13 V1.0 MW (kopie van targetpay.com)

More information

Integration of the platform. Technical specifications

Integration of the platform. Technical specifications Introduction This document is meant as a reference and specification guide to carry out the integration between Gamelearn s platform and the different Learning Management System platforms of the client,

More information

TripSource: Profile Manager

TripSource: Profile Manager TripSource: Profile Manager End User Manual March 12, 2018 Page 1 End User Manual April 12, 2018 Contents... 3 1. Login... 3 1.1. Travel Login and Access to Profile... 3 1.2. Login for the First Time (traveler

More information

Internet+ Mobile Developer Starter Guide. Version 1.0

Internet+ Mobile Developer Starter Guide. Version 1.0 Internet+ Mobile Developer Starter Guide Version 1.0 1 Table of contents Table of contents... 2 What is it... 3 Overview... 3 Buyers Advantages... 3 Merchants Advantages... 3 How does it work?... 4 Overview...

More information

Sophisticated Simplicity In Mobile Interaction. Technical Guide Number Information Services - Asynchronous SOAP. Version 1.3

Sophisticated Simplicity In Mobile Interaction. Technical Guide Number Information Services - Asynchronous SOAP. Version 1.3 Sophisticated Simplicity In Mobile Interaction Technical Guide Number Information Services - Asynchronous SOAP Version 1.3 Table of Contents Page 1. Introduction to Number Information Services 3 2. Requirements

More information

Easypay COP interface manual

Easypay COP interface manual Easypay COP interface 1/15 Version 3.4 Status published Replaces version 3.3 Issue date 09/14/2015 Valid from 09/14/2015 Valid until - Author Alexander Schamne 2/15 Change list Updated on Updated by Version

More information

13241 Woodland Park Road, Suite 400 Herndon, VA USA A U T H O R : E X O S T A R D ATE: M A R C H V E R S I O N : 3.

13241 Woodland Park Road, Suite 400 Herndon, VA USA A U T H O R : E X O S T A R D ATE: M A R C H V E R S I O N : 3. SECURE ACCESS MAN AG E R FIRST TIME LOGIN GUIDE A U T H O R : E X O S T A R D ATE: M A R C H 2 0 1 5 V E R S I O N : 3.0 1 S E C U R E A CCESS M A N A G E R SECURE ACCESS MANAGER OVERVIEW... 3 SUMMARY...

More information

Test Plan and Cases (TPC)

Test Plan and Cases (TPC) Test Plan and Cases (TPC) Team 02 Member Name Role Email Rajat Verma Project Manager, Lifecycle Planner, Dev rajatver@usc.edu Preksha Gupta Software Architect, Operational Concept prekshag@usc.edu Engineer

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

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

Front Gateway Product Description for the connection between the SMS gateway and customer

Front Gateway Product Description for the connection between the SMS gateway and customer Front Gateway Product Description for the connection between the SMS gateway and customer Applies to: SMS Gateway Standard SMS Gateway Proff SMS Gateway PSK Development Manual v.2.22 2017-05-05 Side 1

More information

Standard Checkout. HTML Implementation Guide. U.K. Version

Standard Checkout. HTML Implementation Guide. U.K. Version Standard Checkout HTML Implementation Guide U.K. Version 2013-09-05 Contents 3 Contents List of Tables... 5 Overview of Checkout by Amazon... 7 Who Should Read This Document... 7 Prerequisites... 7 Your

More information

Administrator's and Developer's Guide

Administrator's and Developer's Guide Administrator's and Developer's Guide Rev: 23 May 2016 Administrator's and Developer's Guide A Quick Start Guide and Configuration Reference for Administrators and Developers Table of Contents Chapter

More information

Event Push SOAP Contract

Event Push SOAP Contract Event Push SOAP Contract Message Delivery Schedule Sertifi will attempt to deliver messages multiple times if the web service listener is down or is returning errors. The delivery schedule for all the

More information

Using Voodoo SMS within Zapier

Using Voodoo SMS within Zapier Using Voodoo SMS within Zapier B ULK SMS MARKETING Requirements This plug-in has the following requirements: Zapier Account - Zapier have different types of plans, see the pricing page for more information.

More information

OPERATOR SERVICE PLATFORM

OPERATOR SERVICE PLATFORM OPERATOR SERVICE PLATFORM Opaali Portal Guide Copyright 2017 Aepona Limited, and copyright 2017 Telia All rights reserved by respective owners. Revision: 6.3 Legal Information Legal Information This document

More information

User Guide. Nexmo SMS Notification Extension for Magento by Azaleasoft. Support: (

User Guide. Nexmo SMS Notification Extension for Magento by Azaleasoft. Support: ( Nexmo SMS Notification Extension for Magento by Azaleasoft User Guide Copyright 2016-2017 azaleasoft.com. 1 Table of Contents 1.Installation Process... 3 2.How to use... 4 2.1 Create Nexmo Account... 4

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

OG-BULKSMS USER MANUAL

OG-BULKSMS USER MANUAL CONTENTS 1 Home 4 1.1 Application categories 4 1.2 Toolbar 5 1.3 Menu options 6 1.4 Contact 6 7 2 Account settings 7 2.1 My account 7 2.1.1 Account information 8 2.1.2 Contact information 8 2.2 Billing

More information

SPARROW Gateway. Developer API. Version (Build 7373)

SPARROW Gateway. Developer API. Version (Build 7373) SPARROW Gateway Developer API Version 3.2.0 (Build 7373) Released September 2016 Revision History Date Revision Comments Author 2016 02 26 2.0 Initial document created Alexandra Blinova 2 Table of Contents

More information

Registering a Card and Creating an Account on

Registering a Card and Creating an Account on Installing MyCardRules The MyCardRules App is available for both iphones and Android phones. To install MyCardRules: 1. Search for the app in the App Store or on Google Play. 2. Follow the instructions

More information

Amazon SES - For Great Delivery

Amazon SES - For Great  Delivery Amazon SES - For Great Email Delivery This is a one-time setup, and it should be done near the beginning of your business setup process because it may take a few days to get it through the simple approval

More information

Rev

Rev Rev. 1.7.2 Copyright Notice Copyright Telinta Inc. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose, without the express

More information

Patients' FAQs. Patient Portal Version 2.7 NEXTMD.COM

Patients' FAQs. Patient Portal Version 2.7 NEXTMD.COM Patients' FAQs Patient Portal Version 2.7 NEXTMD.COM November 2018 Enrollment How do I enroll in the NextGen Patient Portal website? Your practice can enroll you in NextGen Patient Portal in one of the

More information

Marketo ON24 Adapter. User Guide Version 4.1. Updated May 3, 2013

Marketo ON24 Adapter. User Guide Version 4.1. Updated May 3, 2013 Marketo ON24 Adapter User Guide Version 4.1 Updated May 3, 2013 CONTENTS EVENT INTEGRATION OVERVIEW... 2 BEFORE YOU BEGIN... 3 REQUIREMENTS... 3 HOW TO CREATE AN EVENT IN MARKETO WITH AN ON24 INTEGRATION...

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

BluePay QuickBooks Online Plugin User Guide

BluePay QuickBooks Online Plugin User Guide BluePay QuickBooks Online Plugin User Guide This documentation contains a step-by-step guide on installing the plugin and also how to utilize all of the plugin s features. You will need to first contact

More information

Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service

Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service http://docs.oracle.com Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service Configuration Guide 2018 Oracle Corporation. All rights reserved 07-Jun-2018 Contents 1 HIPAA 3 1.0.1 What is HIPAA?

More information

CyberSource Global Payment Management

CyberSource Global Payment Management CyberSource Global Payment Management Magento 2.x Implementation Guide Version 1.1.0 August 2017 Extract Use this guide to install and configure the CyberSource extension for Magento 2.x. Contents Recent

More information

Payment Solutions MyCardRules. MyCardRules Mobile App. User Guide. Release 3.1

Payment Solutions MyCardRules. MyCardRules Mobile App. User Guide. Release 3.1 Payment Solutions November 27, 2017 Installing MyCardRules... 2 Registering a Card and Creating an Account on MyCardRules... 2 Logging In to MyCardRules... 2 Registering a Card... 3 Creating an Account...

More information

Direct Merchant Notification Guide API v 1.0.0

Direct Merchant Notification Guide API v 1.0.0 Introduction The purpose of the Direct Merchant Notification (DMN) is to ensure reliable server-to-server communication between xt-payments and the Merchant s web server. Please note that DMN does not

More information

Please note: This is a working document and is subject to change. Please check back periodically to ensure you have the latest version of this spec.

Please note: This is a working document and is subject to change. Please check back periodically to ensure you have the latest version of this spec. Customs Declaration Service Full Declaration API v0.4 Document Version Please note: This is a working document and is subject to change. Please check back periodically to ensure you have the latest version

More information

Connect-2-Everything SAML SSO (client documentation)

Connect-2-Everything SAML SSO (client documentation) Connect-2-Everything SAML SSO (client documentation) Table of Contents Summary Overview Refined tags Summary The Connect-2-Everything landing page by Refined Data allows Adobe Connect account holders to

More information

Getting Started Guide. Prepared by-fatbit Technologies

Getting Started Guide. Prepared by-fatbit Technologies Getting Started Guide Prepared by-fatbit Technologies 1 Contents 1. Manage Settings... 3 1.1. General... 4 1.2. Local... 6 1.3. SEO... 7 1.4. Option... 8 1.5. Live Chat... 19 1.6. Third Part API s... 20

More information

Hardware One-Time Password User Guide November 2017

Hardware One-Time Password User Guide November 2017 Hardware One-Time Password User Guide November 2017 1 Table of Contents Table of Contents... 2 Purpose... 3 About One-Time Password Credentials... 3 How to Determine if You Need a Credential... 3 Acquisition

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