MERCHANT INTEGRATION GUIDE. Version 2.7

Size: px
Start display at page:

Download "MERCHANT INTEGRATION GUIDE. Version 2.7"

Transcription

1 MERCHANT INTEGRATION GUIDE Version 2.7

2 CHANGE LOG 1. Showed accepted currencies per payment option. 2. Added validation for RUB payments. INTRODUCTION MegaTransfer provides a wide range of financial services available worldwide: from transferring money and exchanging currencies, to financial institutions and banking alternatives. But one of the most common use of payment system like MegaTransfer, is to accept payments from clients via merchant perspective. Once registered and successfully verified by MegaTransfer, merchants can integrate the payment gateway (or we can call it here as MTG stands for MegaTransfer Gateway) instantly. One great attribute of MTG is that it allows merchants to accept four (4) different types of payment methods by just installing a single block of code. The following payment types are accepted by MTG: 1. VISA and MasterCard 2. MegaTransfer Wallet 3. China UnionPay 4. Wire Transfer This manual should help merchants to implement and integrate MTG to their respective online shops. We ensure each and every merchants a safe and secure payment environment between their website and to MTG server.

3 PARAMETERS The following parameters are needed in order for us to integrate properly the MTG. All API requests must be sent to by POST method. items quantity amount currency total_amount merchant_id order_id client_name client_country client_city client_ client_regdate url selected product to be bought by client (alphanumeric, required) number of items (numeric, required) price of the item (float, required) Credit Cards (EUR, GBP, USD, RUB) MegaTransfer Wallet (EUR, USD, GBP, AED, AUD, BTC, CAD, CHF, CNY, CZK, DKK, HKD, HUF,ILS, INR, JPY, KWD, LTC, LTL, NOK, NZD, PHP, PLN, RON, RUB, SAR, SEK, SGD) China UnionPay (EUR, USD, GBP, AED, AUD, CAD, CHF, CNY, CZK, DKK, HKD, HUF,ILS, INR, JPY, KWD, LTL, NOK, NZD, PHP, PLN, RON, RUB, SAR, SEK, SGD) Wire Transfer (EUR, USD, GBP, CZK, NOK, SEK, CHF, CAD, AUD, DKK, HKD, JPY, NZD, PLN, RUB, SGD) quantity * amount (float, required) your merchant ID; please check setup (required) order ID from merchant s system (required) Name of end user inside Merchant's system. (required) Country name or country code of end user inside Merchant's system. (required) City of end user inside Merchant's system. (required) address of end user inside Merchant's system. (required) Registration date of end user inside Merchant's system. (required) URL on merchant's system triggered by end users before entering MegaTransfer process (required) gateway_id 0 for test gateway, 1 for live gateway (required) Use this test account username for test gateway: Username: testmegatransfer@gmail.com Password: testmt@1234 signature composed of hash ("sha256",(secret code + separator + merchant_id + separator + items + separator + quantity + separator + amount + separator + total_amount + separator + currency + separator + secret code)) where : secret code indicated in your merchant setup separator indicated in your merchant setup (required) CALLBACK PAGES Callback pages are pages where client will be redirected after performing payments. The following are the callback pages:

4 Wire Transfer Message URL default address of page where client will be redirected after wire transfer payment request Success URL default address of page where client will be redirected after successful payment Fail URL default address of page where client will be redirected when an error occurred during payment Callback URL default address of page for performing and receiving POST variables in JSON format through curl method. RETURN PARAMETERS items quantity amount currency total_amount merchant_id order_id transaction_id message token selected product to be bought by client (alphanumeric, required) number of items (numeric, required) price of the item (float, required) EUR, USD, GBP, AED, AUD, BTC, CAD, CHF, CNY, CZK, DKK, HKD, HUF, ILS, JPY, KWD, LTC, LTL, NOK, NZD, PHP, PLN, RON, RUB, SAR, SEK, or SGD.(required) quantity * amount (float, required) your merchant ID; please check setup (required) order ID from merchant s system (required) reference number from Megatransfer system error messages (for failed transactions only) composed of hash ("md5",(secret code + order_id + transaction_id + secret code)) where : secret code indicated in your merchant setup (for success transactions only)

5 IMPLEMENTATION When clients of the merchant selects Megatransfer as their payment method, clients are actually sending data to MegaTransfer s web servers through safe and secure connection. Data sent by clients contains the payment information that makes up the behavior of MTG. Shopping Cart Process Page contains items, quantity, amount, currency and total_amount to be posted on Process Page. contains items, quantity, amount, currency total_amount, order_id and signature to be posted in MTG. Initially, when MTG is successfully implemented, merchants are only allowed to use two (2) payment methods the MegaTransfer Wallet and Wire Transfer. In order to start accepting VISA, MasterCard, and CUP (China UnionPay), merchants need to submit verification documents that supports the idea that their business is in good standing. Once verified, MegaTransfer will automatically add the remaining payment methods on merchant s MTG setup. WIRE TRANSFER API Wire Transfer can be added as a payment option by switching it ON from Merchant Setup page. All transactions paid to you by your clients can be tracked using this link: ID]/[MERCHANT KEY]/[ORDER ID] Both Merchant ID and Merchant Key can be found on your Merchant Setup page. Order ID is optional. Leaving it blank will list all payment transactions under your merchant account, otherwise, it will show records based on that specific Order ID.

6 SAMPLE CODE STRUCTURES STRUCTURE OF PHP REQUEST <?php $items = $_POST["items"]; $quantity = $_POST["quantity"]; $amount = $_POST["amount"]; $currency = $_POST["currency"]; $client_name = $_POST["client_name"]; $client_country = $_POST["client_country"]; $client_city = $_POST["client_city"]; $client_ = $_POST["client_ "]; $reg_date = $_POST["client_regdate"]; $url = " $merchant_id = " "; $secret_code = "6c417hg8eaef344c41b8ffggh56064cdfe13101dc28bbnx9b03bbb34c7e96dbdf4"; $separator = " "; $order_id = strtotime("now"); $total_amount = (int) $quantity * (float) $amount; $total_amount = sprintf("%1.2f",$total_amount); $signature = hash("sha256",$secret_code.$separator.$merchant_id.$separator.$items.$separator.$quantity. $separator.$amount.$separator.$total_amount.$separator.$currency. $separator.$secret_code);?> <html> <body onload="document.form.submit();"> <form id="form" name="form" method="post" action="<?php echo " <input type="hidden" name="items" value="<?php echo $items?>"/> <input type="hidden" name="quantity" value="<?php echo $quantity?>"/> <input type="hidden" name="amount" value="<?php echo $amount?>"/> <input type="hidden" name="currency" value="<?php echo $currency?>"/> <input type="hidden" name="total_amount" value="<?php echo $total_amount?>"/> <input type="hidden" name="merchant_id" value="<?php echo $merchant_id?>"/> <input type="hidden" name="order_id" value="<?php echo $order_id?>"/> <input type="hidden" name="client_name" value="<?php echo $client_name?>"/> <input type="hidden" name="client_country" value="<?php echo $client_country?>"/> <input type="hidden" name="client_city" value="<?php echo $client_city?>"/> <input type="hidden" name="client_ " value="<?php echo $client_ ?>"/> <input type="hidden" name="client_regdate" value="<?php echo $reg_date?>"/> <input type="hidden" name="url" value="<?php echo $url?>"/> <input type="hidden" name="signature" value="<?php echo $signature?>"/> //FOR TEST GATEWAY <input type="hidden" name="gateway_id" value="<?php echo "0"?>"/> //FOR LIVE GATEWAY <input type="hidden" name="gateway_id" value="<?php echo "1"?>"/> </form> </body> </html> <body onload="document.form.submit();"> <form id="form" name="form" method="post" action="<?php echo " <input type="hidden" name="items" value="<?php echo $items?>"/> <input type="hidden" name="quantity" value="<?php echo $quantity?>"/>

7 <input type="hidden" name="amount" value="<?php echo $amount?>"/> <input type="hidden" name="currency" value="<?php echo $currency?>"/> <input type="hidden" name="total_amount" value="<?php echo $total_amount?>"/> <input type="hidden" name="merchant_id" value="<?php echo $merchant_id?>"/> <input type="hidden" name="order_id" value="<?php echo $order_id?>"/> <input type="hidden" name="signature" value="<?php echo $signature?>"/> //FOR TEST GATEWAY <input type="hidden" name="gateway_id" value="<?php echo "0"?>"/> //FOR LIVE GATEWAY <input type="hidden" name="gateway_id" value="<?php echo "1"?>"/> </form> </body> </html> STRUCTURE OF JSON RESPONSE Failed {"items":"clothes","quantity":"2","amount":"2.00","currency":"usd","total_amount":"4.00","merchant_id":" ", "order_id":" ","status":"failed","message":"internal error on the system. Please contact support."} Success {"items":"clothes","quantity":"2","amount":"50.00","currency":"usd","total_amount":" ","merchant_id":" ", "user_id":"74","order_id":" ","token":"66baa1bf b0f154bca39f0e","tr ansaction_id":" ","status":"success"} STRUCTURE OF PHP CALLBACK <?php parse_str(file_get_contents("php://input"),$_post); $response = $_POST["response"]; $response = json_decode($response,true); $items = $response["items"]; $quantity = $response["quantity"]; $amount = $response["amount"]; $currency = $response["currency"]; $merchant_id = $response["merchant_id"]; $order_id = $response["order_id"]; $status = $response["status"]; $secret_code = "6c417hg8eaef344c41b8ffggh56064cdfe13101dc28bbnx9b03bbb34c7e96dbdf4"; if($status == "success"){ $transaction_id = $response["transaction_id"]; $token = $response["token"];

8 if($token == hash("md5",$secret_code.$order_id.$transaction_id.$secret_code)){ //your statement here //update your database for success transaction } } else { $message = $response["message"]; //your statement here //update your database for fail transaction }?> CONTACT US For assistance on how to integrate MTG, please contact us through following methods: support@megatransfer.co.uk Phone Skype mtuk.support

DoorVaani.com User Guide

DoorVaani.com User Guide DoorVaani.com User Guide DoorVaani.com is a VOIP Services provider and the website at DoorVaani.com is a fully automated web application for self-administration of your account. This user guide details

More information

STPP Testing Published: 8 December 2017

STPP Testing Published: 8 December 2017 During integration with Secure Trading s systems, the Merchant can perform tests on the system using the details supplied within this document. Published: 8 December 2017 1.18 Table of Contents 1 Introduction...

More information

Easy Cart User Manual

Easy Cart User Manual Easy Cart User Manual Table of contents 1. Installing Easy Cart (p. 2) 2. Overview of the administration panel (p. 2) 3. Configuring the website (p. 3) 4. Template settings (p. 6) 5. Setting the product

More information

K-Payment Gateway (Merchant Integration Guide )

K-Payment Gateway (Merchant Integration Guide ) K-Payment Gateway (Merchant Integration Guide ) Copyright 2006 KASIKORNBANK Public Company Limited 3 1: VbV/SecureCode Environment 4 2: K-Payment Gateway 6 3: Program Code K-Payment Gateway 7 4: 9 5: K-Payment

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

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

DIGIPASS DP 260 USER MANUAL

DIGIPASS DP 260 USER MANUAL DIGIPASS DP 260 USER MANUAL Contents 1. What is DIGIPASS? 2. How to activate the DIGIPASS and how to enter 3. How to use DIGIPASS? 1. What is DIGIPASS? Symbols used in the device DIGIPASS DP 260 is password-protected

More information

OKPAY guides. ewallet Guide

OKPAY guides. ewallet Guide Название раздела OKPAY guides www.okpay.com ewallet Guide 2012 Contents OKPAY ewallet Guide 1. Introduction to ewallet Service 2. OKPAY ewallet Overview 3. Managing ewallets 3.1. Create Additional ewallet

More information

Merchant Integration Manual (POST)

Merchant Integration Manual (POST) PAYSBUY Merchant Integration Manual (POST) Version 3.01 (Updated 01/09/2010) 2010 PaySbuy Co. Ltd. All rights reserved. PAYSBUY is a registered trademark of PaySbuy Co. Ltd. The PaySbuy logo is a trademark

More information

AlliedWallet QuickPay API

AlliedWallet QuickPay API AlliedWallet QuickPay API The AlliedWallet QuickPay API can process your online purchases with a minimal amount of programming. Both shopping cart and subscription transactions can be submitted. The QuickPay

More information

1 (56) Payment Gateway API V PAYMENT GATEWAY API

1 (56) Payment Gateway API V PAYMENT GATEWAY API 1 (56) Payment Gateway API V 2.8.1 PAYMENT GATEWAY API 2 (56) Payment Gateway API V 2.8.1 PAYMENT GATEWAY API Contents INTRODUCTION... 4 INTEGRATION USING MODULES OR INTEGRATION PACKAGES... 4 MODULES...

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

Foreign Item Collection Process Manual

Foreign Item Collection Process Manual Foreign Item Collection Process Manual April 2017 Quick Reference for Member Credit Unions Page 1 Cash Letter and Collections Page 17 Checklist for Foreign Items Page 19 This document explains the functionality

More information

CSE 101. Algorithm Design and Analysis Miles Jones Office 4208 CSE Building Lecture 8: Negative Edges

CSE 101. Algorithm Design and Analysis Miles Jones Office 4208 CSE Building Lecture 8: Negative Edges CSE 101 Algorithm Design and Analysis Miles Jones mej016@eng.ucsd.edu Office 4208 CSE Building Lecture 8: Negative Edges DIJKSTRA S ALGORITHM WITH DIFFERENT PRIORITY QUEUES. Runtime of Array: O V 2 Runtime

More information

The Chinese opportunity

The Chinese opportunity The Chinese opportunity PAYMENT METHODS - MARKET GUIDE - CHINA Watch your business grow in this expanding ecommerce market Why choose Worldpay? Introducing Asia s powerhouse 1 the complexities and challenges

More information

Monetra. Merchant Account Setup Worksheet. Merchant Account Setup Worksheet v8.8.0 Build Generated On: November 8, 2018

Monetra. Merchant Account Setup Worksheet. Merchant Account Setup Worksheet v8.8.0 Build Generated On: November 8, 2018 Monetra Merchant Account Setup Worksheet Merchant Account Setup Worksheet v8.8.0 Build 56867 Generated On: November 8, 2018 Copyright 1999-2018 Main Street Softworks, Inc. The information contained herein

More information

ewallet API integration guide version 5.1 8/31/2015

ewallet API integration guide version 5.1 8/31/2015 ewallet API integration guide version 5.1 8/31/2015 International Payout Systems, Inc. (IPS) ewallet API Integration Guide contains information proprietary to IPS, and is intended only to be used in conjunction

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

CCBill Module for Magento Installation and Configuration

CCBill Module for Magento Installation and Configuration CCBill Module for Magento Installation and Configuration Created: October 8, 2014 Updated: November 13, 2017 2017 CCBill, LLC Plugin v2.0 November 2017 http://www.ccbill.com/ Table of Contents Introduction

More information

1. What is AAE Travel Card? Currency Currency Code US Dollar Euro Pound Sterling Australian Dollar Canadian Dollar Hong Kong Dollar Thai Bhat

1. What is AAE Travel Card? Currency Currency Code US Dollar Euro Pound Sterling Australian Dollar Canadian Dollar Hong Kong Dollar Thai Bhat 1. What is AAE Travel Card? It s a reloadable pre-paid Visa Platinum Card that can hold multiple foreign currencies on one card. It can be used to pay for goods and services or to withdraw money from ATMs

More information

Direct Post Integration Guide

Direct Post Integration Guide Direct Post Integration Guide Page 1 of 34 Document Control This is a control document DESCRIPTION Direct Post Integration Guide CREATION DATE 20/12/2011 CREATED BY SecurePay VERSION 1.4 DATE UPDATED 28/02/2017

More information

Token sale is live now

Token sale is live now The new Operating System of $7.6 trillion Healthcare Industry Token sale is live now PLEASE FOLLOW THE INSTRUCTIONS CAREFULLY IN ORDER THAT YOU WILL BE ABLE TO SAFELY PARTICIPATE IN ETHEAL TOKEN SALE.

More information

CarTrawler AJAX Booking Engine Version: 3.26 Date: 18/06/09.

CarTrawler AJAX Booking Engine Version: 3.26 Date: 18/06/09. CarTrawler AJAX Booking Engine Date: 18/06/09 http://www.cartrawler.com CarTrawler AJAX Booking Engine Introduction... 3 Set up the server environment:... 3 Set up the webpage with the AJAX Booking Engine:...

More information

FAQ RHB TravelFX App and Multi-Currency Card

FAQ RHB TravelFX App and Multi-Currency Card FAQ RHB TravelFX App and Multi-Currency Card 1 About RHB TravelFX 1.1 What is the RHB TravelFX? RHB TravelFX is a mobile application that is to be used for your RHB TravelFX Multi-Currency Card that allows

More information

Code Authenticator. User guide

Code Authenticator. User guide Code Authenticator User guide Contents Introduction 1 Service administrator 1-2 Role and responsibilities Adding Deleting and suspending User 3 Role Adding Deleting and suspending Smart Cards 3-4 Issuing

More information

Payment Page - Integration

Payment Page - Integration Payment Page - Integration A step by step guide to integrating chex with your website All the information you need to be up and running with your account Version 2 Updated February 2018 IMPORTANT Customers

More information

USER GUIDE (MERCHANT) MOBILE MONEY ONLINE PLATFORM. Project number: PRMTN160104

USER GUIDE (MERCHANT) MOBILE MONEY ONLINE PLATFORM. Project number: PRMTN160104 MOBILE MONEY ONLINE PLATFORM Project number: PRMTN160104 Table of Contents 1. MERCHANT ACCOUNT CREATION... 1 1.1. Individual Merchant Account... 1 1.1.1. Individual Merchant with Mobile Money Account...

More information

How to integrate ExoClick s conversion tracking with tracking software ThriveTracker

How to integrate ExoClick s conversion tracking with tracking software ThriveTracker How to integrate ExoClick s conversion tracking with tracking software ThriveTracker ExoClick gives you access to global traffic sources, targeting features, big data and statistical analytical tools to

More information

QIWI Integration Guide. Version 6.2.2

QIWI Integration Guide. Version 6.2.2 QIWI Integration Guide Version 6.2.2 As of: 14.02.2017 Table of Contents About QIWI... 4 General information about QIWI... 4 Process flow chart... 4 Paygate interface... 5 Definitions... 5 Payment with

More information

05/2007. Guidebook for use of an electronic personal token EOK V2. sporotel: ,

05/2007. Guidebook for use of an electronic personal token EOK V2.  sporotel: , 05/2007 Guidebook for use of an electronic personal token EOK V2 www.slsp.sk sporotel: 0850 111 888, 0915 111 888 0 List of contents: 1. INTRODUCTION 3 2. DESCRIPTION OF AN EOK 4 3. SWITCHING ON AN EOK

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting Up the Outgoing Mail Server, page 1 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

COMSGATE Payment Form Specifications

COMSGATE Payment Form Specifications COMSGATE Payment Form Specifications Document ID: CS_PF-1.5.0 Version: v1.5.0 Prepared for: CHARGE Anywhere 4041B Hadley Rd South Plainfield, NJ 07080 Phone + 1 (800) 211-1256 Fax + 1 (732) 417-4448 1

More information

ChinaPay Integration Guide. Version 6.2.2

ChinaPay Integration Guide. Version 6.2.2 ChinaPay Integration Guide Version 6.2.2 As of: 31.03.2017 Table of Contents About ChinaPay... 4 General information about ChinaPay... 4 Process flow chart... 4 Paygate interface... 5 Definitions... 5

More information

Authorize.Net Magento 2.x Payment Module

Authorize.Net Magento 2.x Payment Module Authorize.Net Magento 2.x Payment Module User Guide Revision 1.0.1 September 17, 2018 Sep 17 2018 Authorize.Net Global Payment Management for Magento 2.x 1 Contents Document History... 4 1. Introduction...

More information

SecureFrame Integration Guide

SecureFrame Integration Guide SecureFrame Integration Guide Document Control This is a control document SecureFrame Integration Guide CREATION DATE 02/10/2013 CREATED BY SecurePay VERSION 1.6 DATE UPDATED 28/02/2017 CHANGES 1.6 1.5

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

ICBC (London) Plc Internet Banking FAQ s

ICBC (London) Plc Internet Banking FAQ s ICBC (London) Plc Internet Banking FAQ s Internet banking tips * Never share your account login or password with anyone; * ICBC will never ask you to disclose to us your internet banking password; * Do

More information

Layout File MT101 Format

Layout File MT101 Format Layout File T101 Format This document describes the rules for completing the fields for T101 format with individual or multiple transfer instructions to be processed by Banco Santander Totta, SA. The format

More information

Steps for Completing a Download Transaction on the estore and Downloading your Product Update

Steps for Completing a Download Transaction on the estore and Downloading your Product Update Steps for Completing a Download Transaction on the estore and Downloading your Product Update Once you have received a Technical Bulletin of Release Availability, follow these instructions carefully to

More information

PayU India Integration Guide. Version 6.2.2

PayU India Integration Guide. Version 6.2.2 PayU India Integration Guide Version 6.2.2 As of: 10.03.2017 Table of Contents About PayU India... 4 General information about payment methods via PayU India... 4 Process flow charts... 5 Configuration...

More information

For customers of new with Security Device shown below or Login via SMS, please complete Page 2 to Page 4 ONLY.

For customers of new with Security Device shown below or Login via SMS, please complete Page 2 to Page 4 ONLY. BizChannel@CIMB Maintenance Form For customers of new BizChannel@CIMB with Security Device shown below or Login via SMS, please complete Page 2 to Page 4 ONLY. For customers of old BizChannel@CIMB with

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting Up the Outgoing Mail Server, page 1 Working with Email Templates, page 2 Customizing an Email Template, page 3 Configuring System Parameters (Optional),

More information

CARDIPAY DOCUMENTATION ENGLISH

CARDIPAY DOCUMENTATION ENGLISH CARDIPAY DOCUMENTATION ENGLISH 1 Account Profile 2 Technical Guide Documentation Content 2.1 How to initiate the payment Using the POST Method Using the GET Method 2.2 The Return of information (after

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

Indirect Payment Processor

Indirect Payment Processor Indirect Payment Processor Technical Integration Page 1 of 19 Rights of use: COMPLYING WITH ALL APPLICABLE COPYRIGHT LAWS IS THE RESPONSABILITY OF THE USER. WITHOUT LIMITING THE RIGHTS UNDER COPYRIGHT,

More information

Avinode Broker Link Manual

Avinode Broker Link Manual Avinode Broker Link Manual Doc. version 2.2 www.avinode.com 1 Table of contents 1. Avinode Link About... 3 2. Set up Broker Link on your website... 4 2.1 Basic setup... 4 2.1.1 The tag... 5 2.1.2

More information

Contents. Register...3 Advertiser Area...5 Dashboard...5 Account Information...6 My Wallet...8 Promotions...8 Change Password...12 Change ...

Contents. Register...3 Advertiser Area...5 Dashboard...5 Account Information...6 My Wallet...8 Promotions...8 Change Password...12 Change  ... Contents Register...3 Advertiser Area....5 Dashboard...5 Account Information...6 My Wallet...8 Promotions...8 Change Password...12 Change Email...12 2 Register Advertisers can register on the website by

More information

the recording industry world sales April 2003

the recording industry world sales April 2003 the recording industry world sales April 2003 2002 2OO2 World Sales World sales of recorded music (audio and video) for the year 2002 fell by 7% in value and by 8% in units compared with 2001. The global

More information

MasterPass Integration Guide. Version 6.2.2

MasterPass Integration Guide. Version 6.2.2 MasterPass Integration Guide Version 6.2.2 As of: 24.04.2018 Table of Contents About MasterPass... 4 General information about MasterPass... 4 Process flow charts... 5 Paygate interface... 6 Definitions...

More information

UiBSclearing. UiBSclearing. Never lose a customer due to a failed credit card HEAD OFFICE

UiBSclearing. UiBSclearing. Never lose a customer due to a failed credit card HEAD OFFICE Never lose a customer due to a failed credit card HEAD OFFICE 1 Agias Zonis Street, Pentadromos Centre, Office B401, CY-3026, Limassol, Cyprus P.O. BOX 52208, 4062 Limassol, Cyprus Tel: +357 7777 [UiBS]

More information

HSBC INTRODUCES A SOCIAL P2P PAYMENT APP TO HONG KONG Easy to use and available to everyone

HSBC INTRODUCES A SOCIAL P2P PAYMENT APP TO HONG KONG Easy to use and available to everyone News Release 7 February 2017 HSBC INTRODUCES A SOCIAL P2P PAYMENT APP TO HONG KONG Easy to use and available to everyone HSBC today announced PayMe, a simple and secure social payment app that allows HSBC

More information

Secure XML API Integration Guide

Secure XML API Integration Guide Secure XML API Integration Guide Document Control This is a control document DESCRIPTION Secure XML API Integration Guide CREATION DATE 02/04/2007 CREATED BY SecurePay VERSION 1.1 DATE UPDATED 07/01/2010

More information

CS LOXINFO eservice V.1.0.2

CS LOXINFO eservice V.1.0.2 CS LOXINFO eservice V.1.0.2 Version 1.0.2 CS LoxInfo Public Company Limited Document Details Document Name: Purpose of Document: End-User Manual Document version: V.1.0.2 Date of First Draft: 21/06/2016

More information

COLLATERAL MANGEMENT AND CUSTODY CLIENT DATA COLLECTION DOCUMENT FOR SMF & OTHER OFFICIAL OPERATIONS, FLS, TFS, DWF, CHAPS IDL AND UK PAYMENT SCHEMES

COLLATERAL MANGEMENT AND CUSTODY CLIENT DATA COLLECTION DOCUMENT FOR SMF & OTHER OFFICIAL OPERATIONS, FLS, TFS, DWF, CHAPS IDL AND UK PAYMENT SCHEMES COLLATERAL MANGEMENT AND CUSTODY CLIENT DATA COLLECTION DOCUMENT FOR SMF & OTHER OFFICIAL OPERATIONS, FLS, TFS, DWF, CHAPS IDL AND UK PAYMENT SCHEMES CONTENTS Guidance Notes... 2 1. Sections Changed...

More information

Student WebAdvisor Training Manual

Student WebAdvisor Training Manual Student WebAdvisor Training Manual Contents Logging into WebAdvisor..2 Registering for a Class Section..4 Paying on My Account. 9 Dropping a Class Section 12 1 Logging into WebAdvisor STEPS 1. Click the

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Welcome to Tradedoubler! The following guide will help you get started. Follow the easy steps below to link to advertisers and start earning commission. Introducing your publisher

More information

PayPlug. The payment solution that increases your sales PAYPLUG EXTENSION FOR MAGENTO V1

PayPlug. The payment solution that increases your sales PAYPLUG EXTENSION FOR MAGENTO V1 PAYPLUG EXTENSION FOR MAGENTO V1 TABLE OF CONTENTS 1. INTRODUCTION..3 2. CONFIGURATION 4 2.1. CONNECT... 2.2. SETTINGS..5 2.3. PAYMENT PAGE..6 2.4. DISPLAY/HIDE PAYPLUG. 3. PAYMENT PAGE.6 3.1. REDIRECT.7

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

EXPEDIA MICE HANDBOOK HOW TO IMPLEMENT WIDGETS ON YOUR HOTEL WEBSITE

EXPEDIA MICE HANDBOOK HOW TO IMPLEMENT WIDGETS ON YOUR HOTEL WEBSITE EXPEDIA MICE HANDBOOK HOW TO IMPLEMENT WIDGETS ON YOUR HOTEL WEBSITE Version 3 December 2017 Increase conversion and user experience by implementing price and search widgets on your hotel website. Expedia

More information

VIRTUAL TERMINAL GUIDE

VIRTUAL TERMINAL GUIDE VIRTUAL TERMINAL GUIDE Version 1.4 Jan 2017 1 TABLE OF CONTENTS ABOUT THIS GUIDE... 2 INTRODUCTION... 3 ACCESSING THE VIRTUAL TERMINAL... 4 SUBMITTING A PAYMENT... 5 VIEWING YOUR TRANSACTIONS... 7 Virtual

More information

Paymentgateway Documentation

Paymentgateway Documentation Paymentgateway Documentation Version: 1.8.0 Document start date: 21-12-06 Maintenance history Date By Version Comments 21-12-2006 Daniel Bielefeldt 1.0 Document start 12-09-2007 Pelle Smidt 1.1 07-03-2008

More information

WEB ANALYTICS. Installation Guide. (Tracking Code 4.0) October 27, 2

WEB ANALYTICS. Installation Guide. (Tracking Code 4.0) October 27, 2 WEB ANALYTICS Installation Guide (Tracking Code 4.0) October 27, 2, 2008 Yahoo! Web Analytics Installation Guide (v. 4.0) 2/74 Table of Contents 1 INTRODUCTION......... 7 1.1 GETTING STARTED WITH YAHOO!

More information

Wirecard CEE Integration Documentation

Wirecard CEE Integration Documentation Created on: 20180823 23:53 by Wirecard CEE Integration Documentation () Created: 20180823 23:53 Online Guides Integration documentation 1/7 Created on: 20180823 23:53 by Integration Guide Overview To start

More information

1 Copyright FATbit Technologies. All Rights Reserved.

1 Copyright FATbit Technologies. All Rights Reserved. Contents 1.0 Affiliate Module... 2 1.1 Registration... 3 2.0 Sharing... 5 3.0 Profile... 5 3.1 My Account... 6 3.1.1 My Account... 6 3.1.2 Payment Information... 8 3.2 My Credits... 9 3.3 Change Password...

More information

Connecting VirtueMart To PayPal (Live)

Connecting VirtueMart To PayPal (Live) Connecting VirtueMart To PayPal (Live) After testing is complete in the PayPal Sandbox and you are satisfied all is well, then its time to disconnect VirtueMart from the PayPal Sandbox and connect Virtuemart

More information

PayGate (Pty) Ltd. PayWebv2 Version PayWebv2. June Version 1.0 Revision 0.11

PayGate (Pty) Ltd. PayWebv2 Version PayWebv2. June Version 1.0 Revision 0.11 PayWebv2 June 2009 Version 1.0 Revision 0.11 recording, or otherwise, without the prior written permission of the authors. 1 VERSION HISTORY...3 A QUICK SAMPLE...4 INTRODUCTION...4 WHERE DOES PAYWEB FIT

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting up the Outgoing Mail Server, page 2 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

This document and the API that it describes are deprecated.

This document and the API that it describes are deprecated. This document and the API that it describes are deprecated. Authorize.Net s legacy name-value-pair API is still supported, however it will not be updated, except for critical security updates. To learn

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting up the Outgoing Mail Server, page 2 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Running an Object Search,

More information

BUYING HEARDBEATS VIA KRAKEN

BUYING HEARDBEATS VIA KRAKEN BUYING HEARDBEATS VIA KRAKEN Step by step guide to creating your Kraken account, getting verified, adding & withdrawing funds and buying & selling cryptocurrency. STEP 1 Navigate to the Kraken website

More information

Addendum for Application for Credit Card Processing Service Agreement/New Division Request

Addendum for Application for Credit Card Processing Service Agreement/New Division Request Addendum for Application for Credit Card Processing Service Agreement/New Division Request Date: 5/16/2013 Company ID#: 70725 SECTION 1: COMPANY/CONTACT INFORMATION Company Legal Name: Tyler Technologies,

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

PCT Fee Tables (amounts on 9 September 2013, unless otherwise indicated)

PCT Fee Tables (amounts on 9 September 2013, unless otherwise indicated) PCT Fee Tables The following Tables show the amounts and currencies of the main PCT fees which are payable to the receiving Offices (ROs) and the International Preliminary Examining Authorities (IPEAs)

More information

BUYING ELECTRONEUM VIA KRAKEN

BUYING ELECTRONEUM VIA KRAKEN BUYING ELECTRONEUM VIA KRAKEN Step by step guide to creating your Kraken account, getting verified, adding & withdrawing funds and buying & selling cryptocurrency. STEP 1 CREATING YOUR ACCOUNT Navigate

More information

Getting Started with Online Payments

Getting Started with Online Payments Getting Started with Online Payments Getting Started... 2 Steps for the Online Payment Process... 2 Step 1 Customer Visits Web Site... 2 Step 2 Redirected to Payment Center... 2 Step 3 Status Determined...

More information

PCT Fee Tables (amounts on 1 September 2014, unless otherwise indicated)

PCT Fee Tables (amounts on 1 September 2014, unless otherwise indicated) PCT Fee Tables The following Tables show the amounts and currencies of the main PCT fees which are payable to the receiving Offices (ROs) and the International Preliminary Examining Authorities (IPEAs)

More information

ProtectPay API Appendix Response Values and Simulated Responses Version

ProtectPay API Appendix Response Values and Simulated Responses Version ProtectPay API Appendix Response Values and Simulated Responses Version 01.18.0 1.0 RESERVED VALUES FOR TEST ENVIRONMENT SIMULATED PROCESSING... 2 1.1 Reserved Card Numbers... 2 1.2 Reserved ACH Routing

More information

Programming basics Integration Guide. Version 6.2.1

Programming basics Integration Guide. Version 6.2.1 Programming basics Integration Guide Version 6.2.1 As of: 04.10.2016 Table of Contents Programming... 4 Merchant Interface variants... 4 Security: Payment Card Industry Data Security Standard (PCI DSS)...

More information

Creating a Financial Administrator Account in eflex for Law Firms

Creating a Financial Administrator Account in eflex for Law Firms Creating a Financial Administrator Account in eflex for Law Firms In order for the attorneys in your firm to efile documents that have a fee, such as initiating cases and some secondary filings that require

More information

ideal Integration Guide Version 6.2.3

ideal Integration Guide Version 6.2.3 ideal Integration Guide Version 6.2.3 As of: 13.06.2017 Table of Contents About ideal... 4 General information about ideal... 4 Process flow chart... 4 Paygate interface... 5 Definitions... 5 Calling the

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

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

A Step By Step Guide To Use PayPal

A Step By Step Guide To Use PayPal A Step By Step Guide To Use PayPal Table of Contents Introduction... 3 Creating an Account... 4 PayPal Verification... 5 Verification Process... 5 Utility of Each Account... 7 Transfer of Funds... 8 Checking

More information

WSI-Mindestlohndatenbank

WSI-Mindestlohndatenbank Trends 2000 2018 Minimum wages per hour; as of 1 January (in national currency) Belgium Euro 6,64 6,78 7,05 7,19 7,19 7,33 7,48 7,63 7,94 8,41 8,41 8,58 8,75 9,10 9,10 9,10 9,10 9,28 9,47 Estonia Euro

More information

Bitcoin for WooCommerce Documentation

Bitcoin for WooCommerce Documentation Bitcoin for WooCommerce Documentation Release 3.0.1 EliteCoderLab June 13, 2015 Contents 1 Table of Contents 3 2 Installation 5 2.1 Server Requirements........................................... 5 2.2

More information

Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F.

Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F. ! Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F. Save and complete! A. Identify version number A.1. Log in to Admin

More information

PCT Fee Tables (amounts on 1 November 2015, unless otherwise indicated)

PCT Fee Tables (amounts on 1 November 2015, unless otherwise indicated) PCT Fee Tables The following Tables show the amounts and currencies of the main PCT fees which are payable to the receiving Offices (ROs) and the International Preliminary Examining Authorities (IPEAs)

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

How to use Fusioncoin Wallet

How to use Fusioncoin Wallet How to use Fusioncoin Wallet < How to make an account > Please click Register Type your user name, email address, password and click Register If you have authentication key, do not forget type it. (Email

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

PayTabs ios SDK Integration Guide

PayTabs ios SDK Integration Guide PayTabs ios SDK Integration Guide INTEGRATION GUIDE VERSION 2.0 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...5 1.4 Documentation

More information

BML MobilePay FAQ. Page 1

BML MobilePay FAQ. Page 1 1. What is BML MobilePay App? BML MobilePay is a safe, easy and quick way to make purchases at merchant outlets and send money to individuals via your smartphone. It is a safe and secure method which does

More information

Paymentgateway Documentation

Paymentgateway Documentation Paymentgateway Documentation Version:.. Document start date: -- Maintenance history Date By Version Comments -- Daniel Bielefeldt. Document start -- Pelle Smidt. -- Daniel Bielefeldt. Added documentation

More information

Durango Merchant Services Direct Post API

Durango Merchant Services Direct Post API Durango Merchant Services Direct Post API Durango-Direct.com 866-415-2636 Integration Resources Documentation April 2010 Table of Contents Methodology... 2 Direct Post Method (Server to Server) FIG. 1...

More information

To check the status of your transactions, go to: My Accounts > Last 30 Days Transactions

To check the status of your transactions, go to: My Accounts > Last 30 Days Transactions 1.Transfers/Currency exchange 2. Internet Banking 4. Cards 5.Accounts 6.Others 1. Transfers / Currency exchange: 1.1 How make transfers in GEL To make a transfer in GEL, choose the type of transfer desired

More information

Payment Pages Setup Guide Version 2

Payment Pages Setup Guide Version 2 Version 2 Published: 3 April 2018 Migrating from version 1? Please read our quick start guide on page 100. 2.4.25 (a) Table of Contents 1 The basics... 4 1.1 Workflows... 5 1.2 Session-locked page... 13

More information

PagSeguro Payment. User Guide

PagSeguro Payment. User Guide PagSeguro Payment for Magento 2 User Guide Version 1.0.1 Support: info@pronkoconsulting.com Table of Contents Introduction About PagSeguro Payment For Merchants For Customers Functionality 1. Installing

More information

Monetra. POST Protocol Specification

Monetra. POST Protocol Specification Monetra POST Protocol Specification Programmer's Addendum v1.0 Updated November 2012 Copyright Main Street Softworks, Inc. The information contained herein is provided As Is without warranty of any kind,

More information

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual Mobiketa Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging Quick-Start Manual Overview Mobiketa Is a full-featured Bulk SMS and Voice SMS marketing script that gives you control over your

More information

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

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

More information