Future Pay MCB API. Version

Size: px
Start display at page:

Download "Future Pay MCB API. Version"

Transcription

1 Future Pay MCB API Version

2 Contents Contents Document history Scope and intended audience Communication with Future Pay overview Request Response One Time Payment Request: (see 3.2 Request) Requesttype=single Response parameters on <returnurl> Response parameters on <errorurl> Start Subscription Request: (see 3.2 Request) Requesttype=start Response parameters on <returnurl> Response parameters on <errorurl> Stop Subscription Request: (see 3.2 Request) Requesttype=stop Response Check Subscription Request: (see 3.2 Request) Requesttype=check Response Identification Request: (see 3.2 Request) Requesttype=identify Respons Notification Start Charge Stop Statuscodes hmac calculation Graphical examples start redir

3 12.2 stop http Document history date author vs changes KB, BGT 01 Country specific information separated from generic info KB 02 Added new statuscodes, Returnurl, Errorurl and Notificationurl increase in length KB 03 Added Single for one time payments 2. Scope and intended audience This document describes the communication interface and operation of the FuturePay Mobile Content Billing platform from a technicians perspective. This document is meant for the systemintegrator dealing with connecting this billing platform to his own system. Due to technical implications of national regulations and procedures, this document is to be used in conjunction with National appendices. These appendices can be found in the clients own ControlPanel, see last paragraph of next chapter. 3

4 3. Communication with Future Pay 3.1 overview The FuturePay platform can be reached using the url: This might be done using HTTP-GET or HTTP-POST. HTTP-parameters must be added by the client to describe what operation is expected from the FuturePay platform. Basically, FuturePay recognizes three HTTP-parameter-settings; start, stop and check, and sees this as three different function calls. The client-application and must interpret the response and decide upon information found here, what to do next. The response after calling above url will contain the parameters summed up in section 3.3 Response. In particular, upon success (statuscode=0), the response will contain an unique url. The client is supposed to call to, or to redirect his site-visitor to this unique url. Wether this should be a call (for instance using a curl-library or a HTTP-object) or redirect is stated by FuturePay in the parameter urlcall. If the statuscode in the response is other than zero, the client might want to check the value against the table in section 10. Statuscodes. A National appendix can dictate additional mandatory as well as additional optional parameters. Responses can have additional fields too. Due to the nature of Mobile Content Billing, the FuturePay platform sometimes will be called from the client platform and sometimes from the mobile device of the enduser. For identification of the enduser, his mobile is diverted to urls which sometimes are below the horizon of the FuturePay platform. After this dialog between mobile device on one side and FuturePay and mobile providers on the other side, FuturePay will have the mobile device callback to client-configurated urls (<errorurl> and <returnurl>) to transmit the outcome of this identification process. These callbacks will contain information using parameter-value pairs. Also, FuturePay supports asynchronous notifications. The table below describes the response the client application can expect from FuturePay. If the response after calling/redir to url will be: with parameters: urlcall=http Synchronous xml-formatted urlcall=redir Asynchronous (response is a callback) in HTTP-GET-format notification Asynchronous in HTTP-GET-format Every response and every notification contains a rid (Request ID). The rid-value in a synchronous response can be stored by the client to match is with a future asynchronous 4

5 response or notification. Some notifications will have a rid that does not match any rid in whatever synchronous response. Notifications with such a rid are the result of events unsollicitated by the client (you). Examples of this, are 1: notifications of charge as subscription-charges are done by FuturePay, and 2: notifications of stop after an enduser triggers this stop via a website. Moreover, every asynchronous response contains a hmac-value. This value is the result of a well-known algorithm that takes all parameters of the response as well as a secret key that is only known by FuturePay and the client. This renders the response to be less vulnerable for hacking attempts. An chapter in this manuals gives more information and examples about this algorithm and its use. Clients are able to check the authentity of the parameter values and so prevent costly content to be supplied to not-paying endusers. Simply put the parameters that FuturePay provides in its responses into the hmac-function and check the outcome against the value of the hmac-parameter. From the xml blocks given by FuturePay, clients must take the information contained in the <FP>-tag. See examples. FuturePay performs async requests from ip-addresses: Clients have access to the FuturePay ControlPanel via url: This ControlPanel enables you to configure several settings. Instead of describing every feature of this piece of software, look around and see what parameters you yourself may read, edit and add. 5

6 3.2 Request Future Pay url : 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 single: one time payment start: start a subscription stop: stop a subscription check: get the subscription details identify: lookup if-which subscriptionid user has Optional Parameters returnurl string 1000 After a successful request, you will be redirected to the returnurl Default: as configured in Future Pay Controlpanel errorurl string 1000 After an unsuccessful request, you will be redirected to the errorurl Default: as configured in FuturePay Controlpanel Example: QS6&requesttype=start 3.3 Response Is in xml-format. statuscode integer See section 10. Statuscodes reason string 250 See section 10. Statuscodes urlcall enum http, redirect Http: use http request to Future Pay Redirect: use redirection to Future Pay url string 255 New request to this url Example: <?xml version="1.0" encoding="utf-8"?> <FP> 6

7 <statuscode>0</ statuscode> <reason>ok</ reason> <rid>r160</rid> <urlcall>http</urlcall> <url> </FP> 4. One Time Payment 4.1 Request: (see 3.2 Request) Requesttype=single Optional Parameters marketingkey string 250 Key to recognize your marketing channel Default: service The direct, synchronous response is described in section 3.3 Response. After calling/redirecting to <url>, the following parameters (sections.2 and.3) are added: 4.2 Response parameters on <returnurl> marketing key string 250 Your own given marketing key or by default service pid string 32 Unique payment id 4.3 Response parameters on <errorurl> marketingkey string 250 Your own given marketing key or by default service statuscode integer See section 10. Statuscodes 5. Start Subscription 5.1 Request: (see 3.2 Request) Requesttype=start Optional Parameters marketingkey string 250 Key to recognize your marketing channel 7

8 Default: service Future Pay MCB API v03 The direct, synchronous response is described in section 3.3 Response. After calling/redirecting to <url>, the following parameters (sections.2 and.3) are added: 5.2 Response parameters on <returnurl> marketing key string 250 Your own given marketing key or by default service sid string 32 Unique subscription id 5.3 Response parameters on <errorurl> marketingkey string 250 Your own given marketing key or by default service statuscode integer See section 10. Statuscodes 8

9 6. Stop Subscription 6.1 Request: (see 3.2 Request) Requesttype=stop Required Parameters sid string 32 Unique subscription id which one belongs to the start subscription The direct, synchronous response is described in section 3.3 Response. After calling/redirecting to <url>, the following parameter is added: 6.2 Response statuscode integer See 10. Statuscodes reason string 250 See 10. Statuscodes 9

10 7. Check Subscription 7.1 Request: (see 3.2 Request) Requesttype=check Required Parameters sid string 32 Unique subscription id which one belongs to the start subscription 7.2 Response statuscode integer See 10. Statuscodes reason string 250 See 10. Statuscodes rid string 32 unique request id marketingkey string 250 sid string 32 tariff integer 5 tariff in cents msisdn* string 64 mccmnc* string 8 provider code of mobile user mccmnc_payment* string 8 payment provider code of mobile user time_start datetime subscription start time time_stop* datetime subscription stop time time_charge* datetime subscription last charge time, regardless of successful or failed charge time_charge_success* datetime subscription last successful charge time * only when available and not empty 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> </FP> 10

11 8. Identification 8.1 Request: (see 3.2 Request) Requesttype=identify no additional parameters 8.2 Respons sid string 32 Unique subscription id 9. Notification 9.1 Start marketingkey string 250 sid string 32 tariff integer 5 tariff in cents time_start datetime subscription start time notification_type enum start, charge, stop Start: Start notification Charge: Charge notification Stop: Stop notification example: <?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> 9.2 Charge rid string 32 unique request id marketingkey string 250 pid string 32 sid string 32 11

12 tariff integer 5 tariff in cents msisdn* string 64 mccmnc* string 8 mccmnc_payment* string 8 time_start datetime subscription start time time_stop* datetime subscription stop time time_charge datetime subscription last charge time. Charge could be failed time_charge_success* datetime notification_type enum start, charge, stop subscription last successful charge time Start: Start notification Charge: Charge notification Stop: Stop notification statuscode integer 4 See statuscode * only when available and not empty 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> 9.3 Stop marketingkey* string 250 sid string 32 tariff integer 5 tariff in cents msisdn* string 64 mccmnc* string 8 mccmnc_payment* string 8 time_start datetime subscription start time time_stop* datetime subscription stop time time_charge datetime subscription last charge time Charge could be failed time_charge_success* datetime subscription last successful charge time 12

13 notification_type enum start, charge, stop Future Pay MCB API v03 Start: Start notification Charge: Charge notification Stop: Stop notification statuscode integer 4 See chapter statuscode * only when available and not empty 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> 10. Statuscodes 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 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 905 Internal server error 906 Temporary error at carrier side 907 Unspecified error 908 Payment failed 909 Billing in process 910 MS recognition failed 13

14 11. hmac calculation Note: the hmac calculation in FuturePay asynchronous responses is done using the parameters supplied by FuturePay itself. Parameters contained in url s given by our clients are not taken into this calculation. in 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 } 14

15 12. Graphical examples 12.1 start redir 15

16 12.2 stop http 16

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

MCB Gateway. 1 Introduction. 2 Change history. 3 Table of contents 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

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

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

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

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

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

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

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

Gengo API v1 / v1.1 Documentation

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

More information

AutomationDirect.com Order Import Feature

AutomationDirect.com Order Import Feature AutomationDirect.com Order Import Feature This document describes the requirements to upload a CSV or XML format order file from your system into our AutomationDirect.com E-commerce system to create an

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

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

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

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

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

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

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

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

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

Requests that are forwarded via redirects by a customer's web browser are authenticated via browser API authentication.

Requests that are forwarded via redirects by a customer's web browser are authenticated via browser API authentication. Poplatek Server API Version: 2016-06-22.2 Quick links Browser API Pay REST API Get Transaction Status Cancel Refund Settlement report Changes 2016-06-22: Document sandbox URL endpoints. Small miscellaneous

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

Oracle Cloud. Using the Google Calendar Adapter Release 16.3 E

Oracle Cloud. Using the Google Calendar Adapter Release 16.3 E Oracle Cloud Using the Google Calendar Adapter Release 16.3 E68599-05 September 2016 Oracle Cloud Using the Google Calendar Adapter, Release 16.3 E68599-05 Copyright 2015, 2016, Oracle and/or its affiliates.

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

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

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

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

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

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

More information

Oracle Cloud Using the Google Calendar Adapter. Release 17.3

Oracle Cloud Using the Google Calendar Adapter. Release 17.3 Oracle Cloud Using the Google Calendar Adapter Release 17.3 E68599-09 October 2017 Oracle Cloud Using the Google Calendar Adapter, Release 17.3 E68599-09 Copyright 2015, 2017, Oracle and/or its affiliates.

More information

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

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

More information

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

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

XML Specification QIWI

XML Specification QIWI XML Specification QIWI Published: 19 February 2018 1.2 Table of Contents 1 Introduction... 3 1.1 Features... 3 1.2 Configuration... 3 2 Process Overview... 4 2.1 What will the customer see?... 4 2.2 How

More information

Technical Specification Mr Cash

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

More information

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

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

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

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

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

Hosted Payment Form. Credit & Debit Card Processing v

Hosted Payment Form. Credit & Debit Card Processing v Hosted Payment Form Credit & Debit Card Processing v 2.5.01 Table of Contents Introduction... 5 Intended Audience... 5 Simplifying the Integration Process... 5 Important Notes... 6 Gateway URLs... 6 Hashing

More information

XML Specification ideal

XML Specification ideal XML Specification ideal Published: 19 February 2018 1.3 Table of Contents 1 Introduction... 3 1.1 Features... 3 1.2 Configuration... 3 2 Process Overview... 4 2.1 What will the customer see?... 4 2.2 How

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

Inline Checkout Implementation Guide

Inline Checkout Implementation Guide Inline Checkout Implementation Guide 2 Checkout by Amazon TOC Contents Overview of This Document... 3 Overview of Checkout by Amazon Inline Standard Checkout... 3 Who Should Read This Document...3 Prerequisites...

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

User Guide Netaxept Administration Module. Version 1.50

User Guide Netaxept Administration Module. Version 1.50 User Guide Netaxept Administration Module Version 1.50 This document describes the various functions of Netaxept Administration Module (Netaxept Admin). The latest version of the document is available

More information

User Guide Netaxept Administration Module

User Guide Netaxept Administration Module User Guide Netaxept Administration Module Version 1.50 This document describes the various functions of Netaxept Administration Module (Netaxept Admin). The latest version of the document is available

More information

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

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

More information

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

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration Oracle Cloud Using the Google Calendar Adapter with Oracle Integration E85501-05 January 2019 Oracle Cloud Using the Google Calendar Adapter with Oracle Integration, E85501-05 Copyright 2017, 2019, Oracle

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

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

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

Oracle Cloud Using the MailChimp Adapter. Release 17.3

Oracle Cloud Using the MailChimp Adapter. Release 17.3 Oracle Cloud Using the MailChimp Adapter Release 17.3 E70293-07 September 2017 Oracle Cloud Using the MailChimp Adapter, Release 17.3 E70293-07 Copyright 2016, 2017, Oracle and/or its affiliates. All rights

More information

API Quick Start Sending a Payment v1.4

API Quick Start Sending a Payment v1.4 PPRO Financial Ltd, 23 Hanover Square, London W1S 1JB, UK API Quick Start Sending a Payment v1.4 Table of Contents Introduction... 2 Step 1 Create a CSR... 3 Step 2 Create a Certificate... 3 Step 3 Sending

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

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

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

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

HOW TO SUBMIT AN ENTRY

HOW TO SUBMIT AN ENTRY HOW TO SUBMIT AN ENTRY BEFORE YOU BEGIN: In order to access the Awards Online Entry System you will need to have a profile set up on our website. A PromaxBDA membership is not required to create a profile.

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

Tokenization Integration Guide

Tokenization Integration Guide Tokenization Integration Guide RECURRING PAYMENTS AND TOKENIZATION PROFILE USING API INTEGRATION GUIDE VERSION 1.0 Table of Contents 1. Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5

More information

Server Management & Purchasing Guide

Server Management & Purchasing Guide USER GUIDE MADCAP CENTRAL Server Management & Purchasing Guide Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described

More information

Monetra Payment Software

Monetra Payment Software Monetra Payment Software Monetra PaymentFrame Guide Revision: 1.0 Publication date August 30, 2017 Copyright 2017 Main Street Softworks, Inc. Monetra PaymentFrame Guide Main Street Softworks, Inc. Revision:

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

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

OPC XML-DA Client Driver PTC Inc. All Rights Reserved.

OPC XML-DA Client Driver PTC Inc. All Rights Reserved. 2018 PTC Inc. All Rights Reserved. 2 Table of Contents 1 Table of Contents 2 4 Overview 4 Project Architecture 5 Setup 6 Channel Properties General 6 Channel Properties Write Optimizations 7 Channel Properties

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

Ivolunteer.com is excited to announce that we can now pass credit and debit card payments along with the sign-up process!

Ivolunteer.com is excited to announce that we can now pass credit and debit card payments along with the sign-up process! Taking Payments with Ivolunteer.com Ivolunteer.com is excited to announce that we can now pass credit and debit card payments along with the sign-up process! Examples: sign-up to volunteer and pre-pay

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

Contents. General... 2

Contents. General... 2 Contents General... 2 1. What is ebanking?... 2 2. How safe is ebanking?... 2 3. Can I access ebanking from outside Sri Lanka?... 2 4. What if I open an account subsequent to obtaining ebanking facilities?...

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

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 Communications Services Gatekeeper

Oracle Communications Services Gatekeeper Oracle Communications Services Gatekeeper OAuth Guide Release 5.1 E37521-01 June 2013 Oracle Communications Services Gatekeeper OAuth Guide, Release 5.1 E37521-01 Copyright 2012, 2013, Oracle and/or its

More information

Oracle Cloud Using the Evernote Adapter. Release 17.3

Oracle Cloud Using the Evernote Adapter. Release 17.3 Oracle Cloud Using the Evernote Adapter Release 17.3 E69234-07 September 2017 Oracle Cloud Using the Evernote Adapter, Release 17.3 E69234-07 Copyright 2016, 2017, Oracle and/or its affiliates. All rights

More information

TIBCO Spotfire Automation Services

TIBCO Spotfire Automation Services TIBCO Spotfire Automation Services Software Release 7.9 May 2017 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

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

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

KNET API Integration Guide

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

More information

ideal Integrated PHP

ideal Integrated PHP ideal Integrated PHP Shop Integration Guide composed by: version 1.7, Aug 2011 Copyright 2006, ABN AMRO Bank Contents Contents... 2 1 Introduction... 3 2 Signup process... 4 3 ideal overview... 6 3.1 Integration

More information

Qualys Cloud Platform (VM, PC) v8.x Release Notes

Qualys Cloud Platform (VM, PC) v8.x Release Notes Qualys Cloud Platform (VM, PC) v8.x Release Notes Version 8.18.1 April 1, 2019 This new release of the Qualys Cloud Platform (VM, PC) includes improvements to Vulnerability Management and Policy Compliance.

More information

MadCap Central. Server Management & Purchasing Guide

MadCap Central. Server Management & Purchasing Guide MadCap Central Server Management & Purchasing Guide Copyright 2017 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this

More information

API Integration Guide

API Integration Guide API Integration Guide INTEGRATION GUIDE VERSION 2.4 Table of Contents 1. Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5 1.2 Target Audience...5 1.3 Assistance...6 1.4 Technical Architecture...6

More information

Thin Client Integration Guide Green Dot MoneyPak 8.0

Thin Client Integration Guide Green Dot MoneyPak 8.0 a u t h e n t i c a t i o n s o f t w a r e Cardinal Centinel TM for Merchants Thin Client Integration Guide Green Dot MoneyPak 8.0 Acknowledgements CardinalCommerce Corporation acknowledges with gratitude

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

SMS Pro API Interface specification

SMS Pro API Interface specification Interface specification Version 3.2.0 Copyright Telenor Sverige AB 2013 Contents: 1 Introduction... 3 2 Protocols for interconnection, authentication and security... 3 3 Content format... 4 4 XML References...

More information

Marketing Automation:

Marketing Automation: Email Marketing Automation: Integration with Google Analytics 1 To integrate FreshMail with Google Analytics, you will need: 1. An active FreshMail account. If you don t have one yet, you can open it here.

More information

Technical Specification ideal

Technical Specification ideal Technical Specification ideal (IDE.001) Author(s): Michel Westerink (MW) Version history: V1.0 MW (Copy from targetpay.com) 07/01/13 V1.0 MKh New error codes 20/02/14 Contents 1. Introduction... 3 1.1

More information

NAB TRANSACT. Direct Post v2.1.2 Integration Guide

NAB TRANSACT. Direct Post v2.1.2 Integration Guide NAB TRANSACT Direct Post v2.1.2 Integration Guide CONTENTS 1 Introduction 4 1.1 What is Direct Post? 4 1.2 Requirements for Implementation 4 1.2.1 Public Test Account Details 4 1.3 Card Types Accepted

More information

Oracle Cloud Using the Microsoft Adapter. Release 17.3

Oracle Cloud Using the Microsoft  Adapter. Release 17.3 Oracle Cloud Using the Microsoft Email Adapter Release 17.3 E70297-10 December 2017 Oracle Cloud Using the Microsoft Email Adapter, Release 17.3 E70297-10 Copyright 2016, 2017, Oracle and/or its affiliates.

More information

Inline Checkout Implementation Guide

Inline Checkout Implementation Guide Inline Checkout Implementation Guide TOC 2 Contents Overview of This Document... 3 Standard Checkout Amazon Overview of Checkout by Checkout Overview of Inline Amazon Checkout by Overview of Who Should

More information

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

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

More information

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

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

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

Monetra Payment Software

Monetra Payment Software Monetra Payment Software PaymentFrame Guide Revision: 1.2 Publication date March 28, 2018 Copyright 2018 Main Street Softworks, Inc. PaymentFrame Guide Main Street Softworks, Inc. Revision: 1.2 Publication

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

BMS Managing Users in Modelpedia V1.1

BMS Managing Users in Modelpedia V1.1 BMS 3.2.0 Managing Users in Modelpedia V1.1 Version Control Version Number Purpose/Change Author Date 1.0 Initial published version Gillian Dass 26/10/2017 1.1 Changes to User roles Gillian Dass 14/11/2017

More information

Telephony Toolbar Enterprise. User Guide

Telephony Toolbar Enterprise. User Guide Telephony Toolbar Enterprise User Guide Release 4.4 October 2009 Table of Contents 1 Summary of Changes... 7 1.1 Changes for this Release... 7 2 About This Guide... 8 2.1 Open Telephony Toolbar-Corporate...

More information

Installing Cisco Unified CallConnector for Microsoft Dynamics CRM 3.0

Installing Cisco Unified CallConnector for Microsoft Dynamics CRM 3.0 Installing Cisco Unified CallConnector for Microsoft Dynamics CRM 3.0 This chapter describes how to install the Cisco Unified CallConnector for Microsoft Dynamics CRM 3.0 with the following software: Cisco

More information

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

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

More information