MERCHANT INTEGRATION GUIDE. Version 2.8

Size: px
Start display at page:

Download "MERCHANT INTEGRATION GUIDE. Version 2.8"

Transcription

1 MERCHANT INTEGRATION GUIDE Version 2.8

2 CHANGE LOG 1. Added validation on allowed currencies on each payment method. 2. Added payment_method parameter that will allow merchants to dynamically select payment options per MTG setup. 3. Added success_url that will allow merchants to dynamically designate a Success URL per MTG setup. 4. Added fail_url that will allow merchants to dynamically designate a Fail URL per MTG setup. 5. Added callback_url that will allow merchants to dynamically designate a Callback URL per MTG setup. 6. Allowed merchant to receive status of payment. Successful or Failed on credit card, wallet to wallet, and CUP. Pending or Failed on wire transfer. 7. Allowed merchant to receive the type of payment used by the client to pay for the items. 8. Allowed merchant to receive the amount to be credited on his MegaTransfer wallet. 9. Removed Wire Transfer Message URL. For wire transfer gateway, MegaTransfer hardly suggest that merchant must put it on a separate MTG setup using WT as payment_method and having its own success_url. 10. Added version parameter that will help MegaTransfer detect the gateway version installed by merchant.

3 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.

4 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 payment_method 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) Method/s to be used on processing the payment of client. (required) MT to accept payments via wallet to wallet transfer. CC to accept credit or debit card payments. CH to accept China UnionPay payments. WT to accept wire transfer payments. ALL to accept all payment methods. (vertical bar) delimiter to be used between two or more Sample strings: payment methods. MT CC to show a gateway with Megatransfer and Credit Card as options. CH CC WT to show a gateway with China UnionPay, Credit Card, and Wire Transfer as options. CC to remove option lightbox and gateway will proceed to credit card platform.

5 success_url default address of page where client will be redirected after successful payment. (required) fail_url default address of page where client will be redirected when an error occurred during payment. (required) callback_url default address of page for performing and receiving POST variables in JSON format through curl method. (required) version version number of implemented gateway. You can see it on the first page of PDF guide or integration pages of MegaTransfer. (optional) gateway_id 0 for test gateway, 1 for live gateway (required) Use this test account username for test gateway: Username: [email protected] 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) RETURN PARAMETERS items quantity amount currency total_amount merchant_id order_id transaction_id status payment_method amount_credited 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 successful or failed on MT,CC,CH; pending or failed on WT MT (payments via wallet to wallet transfer); CC (credit or debit card payments); CH (China UnionPay payments); WT (wire transfer payments). Amount credited to your MegaTransfer wallet. 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)

6 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 made in wire transfer method will be automatically tagged as "Pending" on our system. We need to receive an actual wire transfer from your clients before making the status as "Completed" or "Declined". We will credit your wallets once we receive the wire transfer payment from your clients. You can check the status of the wire transfer payments using this link: ID]/[MERCHANT KEY]/[ORDER ID]

7 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. 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=" <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="0"/> //FOR LIVE GATEWAY <input type="hidden" name="gateway_id" value="1"/> <input type="hidden" name="payment_method" value="cc ch mt wt"/> <input type="hidden" name="success_url" value=" <input type="hidden" name="fail_url" value=" <input type="hidden" name="callback_url" value="

8 </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","payment_method":"cc","message":"internal error on the system. Please contact support."} Success {"items":"clothes","quantity":"2","amount":"50.00","currency":"usd","total_amount":" ","merchant_id":" ", "order_id":" ","token":"66baa1bf b0f154bca39f0e","transaction_id": " ","status":"successful","payment_method":"WT","amount_credited":2.99} 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"]; 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

9 }?> CONTACT US For assistance on how to integrate MTG, please contact us through following methods: Phone Skype mtuk.support

Clearing Firm ID No. Asset Account ID No.

Clearing Firm ID No. Asset Account ID No. CLEARING MEMBER SETTLEMENT AND CUSTODY LISTING AND DEBIT AUTHORIZATION Clearing Firm ID No. Asset Account ID No. NOTE: CLEARING MEMBER FIRM MUST CONTACT ITS DESIGNATED S AND EXECUTE ALL DEBIT AUTHORITY

More information

PayDollar PayGate. Integration Guide (For third party shopping cart platform v1.0)

PayDollar PayGate. Integration Guide (For third party shopping cart platform v1.0) PayDollar PayGate Integration Guide (For third party shopping cart platform v1.0) (Leave Blank Intentionally) Page 1 Copyright Information AsiaPay (HK) Limited Room 1702, 17/F K. Wah Centre 191 Java Road

More information

Timeframes for Payment Processing for local Rabobank business clients. Euro Payments, Euro Direct Debits and World Payments. Share in each other

Timeframes for Payment Processing for local Rabobank business clients. Euro Payments, Euro Direct Debits and World Payments. Share in each other Timeframes for Payment Processing for local Rabobank business clients November 2015 Euro Payments, Euro Direct Debits and World Payments Share in each other Contents 1 Introduction 3 2 Euro Payments 4

More information

AliPay International Services

AliPay International Services Title Page AliPay International Services Using the Simple Order API September 2015 CyberSource Corporation HQ P.O. Box 8999 San Francisco, CA 94128-8999 Phone: 800-530-9095 CyberSource Contact Information

More information

API For Chopstickpay Merchants Configuration: Server-to-server Version: 3.4 Status: Published

API For Chopstickpay Merchants Configuration: Server-to-server Version: 3.4 Status: Published API For Chopstickpay Merchants Configuration: Server-to-server Version: 3.4 Status: Published Contents 1. Version Control... 1 2. Introduction... 2 3. Prerequisites... 2 4. Payment Submission Workflow...

More information

Tracking an Affiliate Program or campaign

Tracking an Affiliate Program or campaign Tracking an Affiliate Program or campaign Introduction How affilinet s tracking works 1. A publisher places an affilinet link/creative on their website; this directs users to an advertiser s website. 2.

More information

Payment Transaction.

Payment Transaction. Payment Transaction. Payment transaction information. Payment instructions will be processed on the same business day if we receive them before the relevant cut-off time on that day. Any payment instructions

More information

PAYMENT TRANSACTION. Your payment transaction information

PAYMENT TRANSACTION. Your payment transaction information PAYMENT TRANSACTION Your payment transaction information Contents Payment transaction information 1 Outbound domestic payments 2 Inbound domestic payments 3 International payments 4 Outbound international

More information

International payments Tariff for corporate customers effective from 1 January 2015

International payments Tariff for corporate customers effective from 1 January 2015 International payments Tariff for corporate customers effective from 1 January 2015 About the customer tariff This tariff is applicable to international payment services provided via branches by Nordea

More information

1. Version Control... 1. 2. Introduction... 1. 3. Prerequisites... 1. 4. Payment Submission Workflow... 1. 5. Return Parameter for CallbackURL...

1. Version Control... 1. 2. Introduction... 1. 3. Prerequisites... 1. 4. Payment Submission Workflow... 1. 5. Return Parameter for CallbackURL... Penthouse, Unit 12 th Floor, API For PaySec Merchants Configuration: Automated Clearing House (ACH) Version: 1.0.1 Status: Published Contents 1. Version Control... 1 2. Introduction... 1 3. Prerequisites...

More information

PayPal Foreign Currency Acceptance Training Guide

PayPal Foreign Currency Acceptance Training Guide 1 PayPal Foreign Currency Acceptance Training Guide Table of Contents PayPal Overview... 2 What is Different from Prior PayPal Payments... 2 How to Create a PayPal Account... 3 Foreign Currency Payments

More information

Information on our MiFID order handling & execution policy

Information on our MiFID order handling & execution policy Public Information on our MiFID order handling & execution policy Product General Procedure - Foreign Exchange This is a supplement to the information on our MiFID order handling & execution policy July

More information

Isabel 6 Guide Group #1. How to encode SEPA and Non-SEPA transactions from an ING Belgium (BBRUBEBB) account?

Isabel 6 Guide Group #1. How to encode SEPA and Non-SEPA transactions from an ING Belgium (BBRUBEBB) account? Isabel 6 Guide Group #1 How to encode SEPA and Non-SEPA transactions from an ING Belgium (BBRUBEBB) account? Version 2.1 06-11-2013 Purpose This document describes how to use the Isabel 6 Payment Wizard

More information

AliPay International Services

AliPay International Services Title Page AliPay International Services Using the SCMP API May 2016 CyberSource Corporation HQ P.O. Box 8999 San Francisco, CA 94128-8999 Phone: 800-530-9095 CyberSource Contact Information For general

More information

GTPayment Merchant Integration Manual

GTPayment Merchant Integration Manual GTPayment Merchant Integration Manual Version: Page 1 of 7 What s New in version 1.2.0? 1. Price format limit. Only number or decimal point What s New in version 1.2.1? 1. Take out the Moneybookers

More information

PayPal Integration. PayPal can now be easily integrated via EBS s single interface online platform.

PayPal Integration. PayPal can now be easily integrated via EBS s single interface online platform. Expand your online business with PayPal and EBS PayPal Integration PayPal can now be easily integrated via EBS s single interface online platform. By adding PayPal via the EBS platform, you gain access

More information

Western Union Payments Frequently Asked Questions

Western Union Payments Frequently Asked Questions Edith Cowan University Western Union Payments Frequently Asked Questions International student payments We are here to help Edith Cowan University and Western Union Business Solutions, have come together

More information

Barclaycard SmartPay. Virtual Terminal / MOTO Guide

Barclaycard SmartPay. Virtual Terminal / MOTO Guide Barclaycard SmartPay Virtual Terminal / MOTO Guide Version 3.0 Released April 2012 DOC Version Control Version No. Date Issued Reason for Change 1.0 July 2010 Initial Document 2.0 February 2012 Update

More information

How To Convert Euro To Korean Rouble

How To Convert Euro To Korean Rouble COMMISSIONS, CHARGES & MARGIN SCHEDULE This schedule outlines the various commissions, charges, margins, interest, any other rates and important information that you should be aware of and/or are referred

More information

PayPal Payments Pro Integration Guide

PayPal Payments Pro Integration Guide PayPal Payments Pro Integration Guide Last updated: December 2012 PayPal Payments Pro Integration Guide Document Number: 100001.en_US-201212 2010-2011 PayPal, Inc. All rights reserved. PayPal is a registered

More information

Payments via Unitel & Corporate Netbank Request for Transfer Customer tariff effective from 1 September 2016

Payments via Unitel & Corporate Netbank Request for Transfer Customer tariff effective from 1 September 2016 Payments via Unitel & Corporate Netbank for Transfer Customer tariff effective from 1 September 2016 Contents About the... 3 Charges... 3 and local... 3 Intercompany transfers... 3 Cancellations... 3 Disclosure

More information

Recurring Payments Profile Report. Version 1.1

Recurring Payments Profile Report. Version 1.1 Recurring Payments Profile Report Version 1.1 Last updated: September 2015 Revision History Revision history for PayPal Recurring Payments Profile Report Specification. TABLE P.1 Revision History Date

More information

CLS Statistics on Foreign Exchange Activity

CLS Statistics on Foreign Exchange Activity CLS Statistics on Foreign Exchange Activity October 18, 2010 www.cls-group.com CLS and the CLS Logo are registered trademarks of CLS UK Intermediate Holdings Ltd 2010 CLS UK Intermediate Holdings Ltd.

More information

GFMA GLOBAL FX DIVISION OTC FX OPTIONS CLEARING & SETTLEMENT ANALYSIS RESULTS NOVEMBER 18, 2013

GFMA GLOBAL FX DIVISION OTC FX OPTIONS CLEARING & SETTLEMENT ANALYSIS RESULTS NOVEMBER 18, 2013 GFMA GLOBAL FX DIVISION OTC FX OPTIONS CLEARING & SETTLEMENT ANALYSIS RESULTS NOVEMBER 18, 2013 OTC FX Options Clearing & Analysis Results Contents I. Executive Summary II. Background III. Summary Results

More information

Main banking fees as of, 2015

Main banking fees as of, 2015 Main banking fees as of, 2015 CURRENT ACCOUNTS Current accounts EUR 2,50 / quarter Postal charges: - fortnightly or monthly statement of account - weekly statement of account postal charges / mailing 1

More information

Skrill Automated Payments Interface (API) Guide

Skrill Automated Payments Interface (API) Guide Skrill Automated Payments Interface (API) Guide For use by Skrill merchants This guide describes how to connect to the Automated Payments Interface (API) www.skrill.com Version 2.19 Skrill Limited, 25

More information

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08 Online signature API Version 0.20, 2015-04-08 Terms used in this document Onnistuu.fi, the website https://www.onnistuu.fi/ Client, online page or other system using the API provided by Onnistuu.fi. End

More information

RealAuth. Developers Guide. Version: 4.9

RealAuth. Developers Guide. Version: 4.9 RealAuth Developers Guide Version: 4.9 Document Information Document Name: RealAuth Developers Guide Document Version: 4.9 Release Date: 14 th April 2013 Legal Statement This guide, in addition to the

More information

Digibilly Cloud Pay 1.00.C. Installation Guide

Digibilly Cloud Pay 1.00.C. Installation Guide Digibilly Cloud Pay 1.00.C Installation Guide LEGAL NOTICES The information in this document is copyrighted 2014 by Digibilly and is protected under US and International Law. It may not be reprinted, copied,

More information

Cardsave Payment Gateway

Cardsave Payment Gateway Cardsave Payment Gateway Cart Implementation David McCann Cardsave Online Version 1 1 st August 2010 Contents Page Overview 3-4 o Integration Types 3 Direct/Integrated (Preferred Method) Re-direct/Hosted

More information

KEY INFORMATION DOCUMENT

KEY INFORMATION DOCUMENT KEY INFORMATION DOCUMENT PSG WEALTH OFFSHORE SHARE TRADING ACCOUNT PAGE 0 This document is a summary of key information about the PSG Wealth offshore share trading account. It will help you understand

More information

Brazil So Bad, It s Good Michael Novogratz, CIO, Fortress Liquid Markets

Brazil So Bad, It s Good Michael Novogratz, CIO, Fortress Liquid Markets Brazil So Bad, It s Good Michael Novogratz, CIO, Fortress Liquid Markets All information contained herein is qualified in its entirety by the disclaimer at the beginning of this presentation. Disclaimer

More information

Credomatic Integration Resources. Browser Redirect API Documentation June 2007

Credomatic Integration Resources. Browser Redirect API Documentation June 2007 Credomatic Integration Resources Browser Redirect API Documentation June 2007 Table of Contents Methodology... 2 Browser Redirect Method (Browser to Server) FIG. 1... 2 API Authentication Parameters...

More information

Rate Card. Yorkshire Building Society Sharedealing Service

Rate Card. Yorkshire Building Society Sharedealing Service Rate Card Yorkshire Building Society Sharedealing Service Charges Below are details of the commission rates for each transaction, the account administration fees, foreign dealing charges and deposit account

More information

PayDollar PayGate. Integration Guide version 3.9

PayDollar PayGate. Integration Guide version 3.9 PayDollar PayGate Integration Guide version 3.9 (Leave Blank Intentionally) PayDollar PayGate Integration Guide (v3.9) Page 1 Copyright Information AsiaPay (HK) Limited Unit 1701-2, 17/F, K. Wah Centre

More information

Payment Express Hosted PX Pay 2.0 Integration Guide. Version 2.0

Payment Express Hosted PX Pay 2.0 Integration Guide. Version 2.0 Payment Express Hosted PX Pay 2.0 Integration Guide Version 2.0 COPYRIGHT Copyright 2015, Payment Express 98 Anzac Avenue PO Box 8400 Auckland, 1150 New Zealand www.paymentexpress.com All rights are reserved.

More information

iyzico one-off payment and installment easy payment integration

iyzico one-off payment and installment easy payment integration iyzico one-off payment and installment easy payment integration Version: 1.0.11 iyzi teknoloji ve ödeme sistemleri A.Ş. iyzico one-off payment and installment 1 Release History Date Version Reason for

More information

Elavon Payment Gateway Hosted Payment Page

Elavon Payment Gateway Hosted Payment Page Elavon Payment Gateway Hosted Payment Developers Guide Version: v1.1 1 Table of Contents 1 About This Guide.. 4 1.1 Purpose....4 1.2 Audience.4 1.3 Prerequisites...4 1.4 Related Documents..4 1.5 Conventions..4

More information

LLOYDS CARDNET ONLINE PAYMENTS

LLOYDS CARDNET ONLINE PAYMENTS LLOYDS CARDNET ONLINE PAYMENTS Connect Integration Guide Contents 1 Introduction 1 2 Payment process options 1 2.1 Hosted payment page or using your own payment form 1 2.2 PayOnly Mode 1 2.3 PayPlus Mode

More information

Payment Express Ecommerce PX Pay Interface

Payment Express Ecommerce PX Pay Interface Payment Express Ecommerce PX Pay Interface 1 2 CONTENTS OVERVIEW... 3 BASIC COMMUNICATION... 5 PREPARATION... 8 TRANSACTION REQUEST... 9 GenerateRequest XML Document... 9 Request XML Document... 10 TRANSACTION

More information

STANDARD TARIFF SCALE STOCK, ADR, ETF

STANDARD TARIFF SCALE STOCK, ADR, ETF ANNEX 1 TO BROKERAGE SERVICE AGREEMENT USA Canada Mexico Austria Belgium France NORTH AMERICA Fee EUROPE Germany SWB FWB (1) Chi-X/NURO/Turqoise DE Xetra ETFs Xetra - Stocks Italy Netherlands Spain Sweden

More information

SVEA HOSTED SERVICE SPECIFICATION V1.13

SVEA HOSTED SERVICE SPECIFICATION V1.13 SVEA HOSTED SERVICE SPECIFICATION V1.13 Table of Contents Abstract... 2 Modes of operation... 2 Interactive Mode details... 2 Integration... 2 Input parameters... 3 Output parameters... 8 Error Codes...

More information

Rate Card. Nationwide Sharedealing Service

Rate Card. Nationwide Sharedealing Service Rate Card Nationwide Sharedealing Service Stocktrade: Rate Card Charges Below are details of the commission rates for each transaction, the account administration fees, foreign dealing charges and deposit

More information

Merchant's Default Payout in local currency

Merchant's Default Payout in local currency HiPay Mobile - 1 - EUROPE - AUSTRIA - Direct Carrier Billing Local EUR 1,10 0,92 Activated 0,3328 EUR 2,00 1,67 Activated 0,6870 EUR 3,00 2,50 Activated 1,1250 EUR 4,00 3,33 Activated 1,6797 EUR 5,00 4,17

More information

Elavon Payment Gateway- edcc Developer s Guide

Elavon Payment Gateway- edcc Developer s Guide Elavon Payment Gateway- edcc Developer s Guide Version: v1.1 Table of Contents 1 About This Guide 3 1.1 Purpose 3 1.2 Audience 3 1.3 Prerequisites 3 1.4 Related Documents 3 1.5 Conventions 4 2 Introduction

More information

Rate Minimum Maximum Minimum commission will apply on amounts up to. Maximum commission will apply on amounts from 0.4% 14.

Rate Minimum Maximum Minimum commission will apply on amounts up to. Maximum commission will apply on amounts from 0.4% 14. Rate Card Charges Below are details of the commission rates for each transaction, the account administration fees, foreign dealing charges and deposit account interest rates. We may vary these charges/rates

More information

Retail ISA Rate Card

Retail ISA Rate Card Retail ISA Rate Card Charges Below are details of the commission rates for each transaction, the account administration fees, foreign dealing charges and deposit account interest rates. We may vary these

More information

Extra service for your customers: payments in their own currency. Dynamic Currency Conversion for transactions via your payment terminal or website

Extra service for your customers: payments in their own currency. Dynamic Currency Conversion for transactions via your payment terminal or website PaySquare whitepaper Dynamic Currency Conversion for transactions via your payment terminal or website Extra service for your customers: payments in their own currency 1 Content Introduction: No need to

More information

SECURITIES SERVICES FEES AND COMMISSIONS (for natural and legal persons)

SECURITIES SERVICES FEES AND COMMISSIONS (for natural and legal persons) SECURITIES SERVICES FEES AND COMMISSIONS (for natural and legal persons) AUSTRALIA FOP (Free-of- AUSTRIA FOP (Free-of- BELGIUM e FOP (Free-of- BULGARIA FOP (Free-of- CANADA e (if the value of a single

More information

INFORMATION OF Česká spořitelna, a.s. ON PAYMENT SERVICES Business and Corporate Clients

INFORMATION OF Česká spořitelna, a.s. ON PAYMENT SERVICES Business and Corporate Clients INFORMATION OF Česká spořitelna, a.s. ON PAYMENT SERVICES Business and Corporate Clients TABLE OF CONTENTS This document contains important information on the payment services that Česká spořitelna, a.s.

More information

First 10 transactions Transactions 11 to 50 Transactions 51 and above

First 10 transactions Transactions 11 to 50 Transactions 51 and above This is our standard Tariff of charges for your accounts held at the UK Branch of Silicon Valley Bank. It sets out the prices that we charge you for our most frequently used account services in the UK.

More information

SEEM4540 Open Systems for E-Commerce Lecture 06 Online Payment

SEEM4540 Open Systems for E-Commerce Lecture 06 Online Payment SEEM4540 Open Systems for E-Commerce Lecture 06 Online Payment PayPal PayPal is an American based e-commerce business allowing payments and money transfers to be made through the Internet. In 1998, a company

More information

Business Banking Account Application Form

Business Banking Account Application Form New customer NOTE: Please complete in BLOCK LETTERS. Tick ( ) appropriate block(s) Existing customer Customer number Kind of legal entity Listed Company Unlisted Ltd Company Partnership Sole Proprietor

More information

Installation and Integration Manual TRANZILA Secure 5

Installation and Integration Manual TRANZILA Secure 5 Installation and Integration Manual TRANZILA Secure 5 Last update: July 14, 2008 Copyright 2003 InterSpace Ltd., All Rights Reserved Contents 19 Yad Harutzim St. POB 8723 New Industrial Zone, Netanya,

More information

Netswipe Processing Implementation

Netswipe Processing Implementation Netswipe Processing Implementation Direct Integration with Jumio s Payment Gateway Revision History Version Date published Description 1.0.0 November 22 nd, 2011 Initial release. 1.0.1 January 12 th, 2012

More information

PLEASE READ THIS DOCUMENT CAREFULLY

PLEASE READ THIS DOCUMENT CAREFULLY Multi Currency Savings : Pre-Account Opening Risk Explanation Form and Product Fact Sheet マルチカレンシー 普 通 預 金 契 約 締 結 前 交 付 書 面 兼 商 品 説 明 書 ( 兼 外 貨 預 金 等 書 面 ) (This is a Document to be delivered prior to

More information

Terms and conditions - Cross-border payments

Terms and conditions - Cross-border payments Terms and conditions - Cross-border payments Do you plan to make a cross-border payment? Or are you to receive a payment from a country outside Denmark? Here you can learn what to do if you are to transfer

More information

UPG plc Atlas Technical Integration Guide

UPG plc Atlas Technical Integration Guide UPG plc Atlas Technical Integration Guide Version 13.8.16 Released Aug 2013 Description Integrating your website or payment system into the UPG plc Atlas ecommerce gateway platform UPG Plc. version 13.8.16

More information

Payment Page Integration

Payment Page Integration A step by step guide to integrating Nochex with your website. All the information you need to be up and running with your account. Version 2.0 Updated 16 th January 2007 Payment Page Implementation 1 Table

More information

STANDARD CHARGES FOR THE MAIN TRANSACTIONS AND SERVICES FOR LEGAL ENTITIES

STANDARD CHARGES FOR THE MAIN TRANSACTIONS AND SERVICES FOR LEGAL ENTITIES STANDARD CHARGES FOR THE MAIN TRANSACTIONS AND SERVICES FOR LEGAL ENTITIES CHARGES APPLICABLE AS FROM 1 JANUARY 2012 Corporate & Public Bank Experts in serving your ambitions 1. Current accounts in EUR

More information

Dynamic Currency Conversion Staff Training Manual

Dynamic Currency Conversion Staff Training Manual DCC Tools DCC Point of Sale Display Best Rate Guarantee Programme Information DCC Resources For further information or reading please refer to the following Elavon web pages: On the benefits and Best Rate

More information

Citi London Funds Transfer Cut-off Times and Routing Information

Citi London Funds Transfer Cut-off Times and Routing Information Citi London Funds Transfer Cut-off Times and Routing Information Standard Payment Processing Cut-off Times Customer Settlement Instructions Citi London (1/5) Standard Payment Processing Cut Off Times The

More information

Swedbank Payment Portal Implementation Overview

Swedbank Payment Portal Implementation Overview Swedbank Payment Portal Implementation Overview Product: Hosted Pages Region: Baltics September 2015 Version 1.0 Contents 1. Introduction 1 1.1. Audience 1 1.2. Hosted Page Service Features 1 1.3. Key

More information

Network Merchants Inc (NMI) Integration Resources. Direct Post API Documentation April 2010

Network Merchants Inc (NMI) Integration Resources. Direct Post API Documentation April 2010 Network Merchants Inc (NMI) Integration Resources Direct Post API Documentation April 2010 Table of Contents Methodology... 2 Direct Post Method (Server to Server) FIG. 1... 2 Transaction Types... 3 Sale

More information

1. Debit the account specified by the Customer for the amount agreed to for the purchase of the foreign currency;

1. Debit the account specified by the Customer for the amount agreed to for the purchase of the foreign currency; Foreign Exchange FX Direct - User Guide RULES OF OPERATION The FX Direct Service is provided by Royal Bank of Canada (the Bank). A) When Does a Foreign Exchange Deal Exist? A valid and binding transaction

More information

MERCHANT API INTEGRATION MANUAL. Version: 2.16 <March 2016 >

MERCHANT API INTEGRATION MANUAL. Version: 2.16 <March 2016 > MERCHANT API INTEGRATION MANUAL Version: 2.16 Versions TrustPay Version Date Changes 2.3 January, 2014 Updated sequence diagram of the payment process flow New testing page screenshot Appendix

More information

Official Journal C 425

Official Journal C 425 Official Journal C 425 of the European Union Volume 57 English edition Information and Notices 27 November 2014 Contents II Information INFORMATION FROM EUROPEAN UNION INSTITUTIONS, BODIES, OFFICES AND

More information

ANZ Secure Gateway Virtual Terminal QUICK REFERENCE GUIDE NOVEMBER 2015

ANZ Secure Gateway Virtual Terminal QUICK REFERENCE GUIDE NOVEMBER 2015 ANZ Secure Gateway Virtual Terminal QUICK REFERENCE GUIDE NOVEMBER 2015 2 Contents Welcome 3 1. Getting Started 4 1.1 Virtual Terminal Activation 4 2. Configuring the Virtual Terminal 7 2.1 General Settings

More information

Terms and conditions Cross-border trading

Terms and conditions Cross-border trading Terms and conditions Cross-border trading Here you and your company can gain an overview of the various payment forms you can choose from when trading with partners abroad. Cross-border trading also includes

More information

Internet Banking for Business

Internet Banking for Business INTERNET BANKING FOR BUSINESS Information you need to know about importing transaction files into Internet Banking for Business For more info bnz.co.nz Internet Banking for Business. This guide provides

More information

QIWI Wallet Pull Payments API

QIWI Wallet Pull Payments API QIWI Wallet QIWI Wallet Pull Payments API Version 2.1 Table of contents 1. Introduction... 2 1.1. Purpose of the API... 2 1.2. Things to Know About QIWI Wallet... 2 2. QIWI Wallet Interface... 3 2.1. Creating

More information

Citi International Payment Account (IPA) Solution. Globalization Enabled

Citi International Payment Account (IPA) Solution. Globalization Enabled Citi International Payment Account (IPA) Solution Globalization Enabled For multinational organizations operating in different markets around the globe, an efficient, cost-effective and convenient solution

More information

Main Settings & Setting up Payment Providers

Main Settings & Setting up Payment Providers Main Settings & Setting up Payment Providers Ecommerce Templates Page 1 of 1 Table of Contents The control panel.. 3 Change admin username and password 4 Main admin settings. 5 Country settings 5 Currency

More information

API Integration Payment21 Button

API Integration Payment21 Button API Integration Payment21 Button The purpose of this document is to describe the requirements, usage, implementation and purpose of the Payment21 Application Programming Interface (API). The API will allow

More information

TARIFF OVERVIEW December 2015

TARIFF OVERVIEW December 2015 TARIFF OVERVIEW December 2015 2 Contents 1. Standard transactions and various services 4 2. SEPA credit transfers 5 3. Transfers outside SEPA 6 4. Exchange commission 7 5. Cash withdrawals and deposits

More information

Subscriptions and Recurring Payments Guide

Subscriptions and Recurring Payments Guide Subscriptions and Recurring Payments Guide Last updated: May 2008 PayPal Subscriptions and Recurring Payments Guide Document Number: 100005.en_US.200805 2008 PayPal, Inc. All rights reserved. PayPal is

More information

Price list - Corporate customers

Price list - Corporate customers Price list - Corporate customers Effective from 14 September 2015 The list contains the standard financial services for corporate customers provided by Nordea Bank Norge ASA and its subsidiaries. Nordea

More information

Order Management Integration Guide

Order Management Integration Guide Order Management Integration Guide For Professional Use Only Currently only available in English. A usage Professional Uniquement Disponible en Anglais uniquement pour l instant. Last updated: February

More information

Jobs Portal User Manual

Jobs Portal User Manual Jobs Portal User Manual NetArt Media 2015 Jobs Portal User Manual, Page 1 Table of Contents 1. Installing the website 2. Configuring the website 2.1. Configuration options 2.2. Setting the payments and

More information

Direct Post. Integration Guide

Direct Post. Integration Guide Direct Post Integration Guide Updated September 2013 Table of Contents 1 Introduction... 4 1.1 What is Direct Post?... 4 1.2 About this Guide... 4 1.3 Features and Benefits... 4 1.4 Card Types Accepted...

More information

Credit & Debit Card Payments. Factsheet

Credit & Debit Card Payments. Factsheet Credit & Debit Card Payments Factsheet Contents 1. Card Types... 2 2. Supported countries... 2 3. First Funding via Credit / Debit Card... 3 4. Transaction Currencies... 4 5. Currency Conversion... 4 6.

More information

Self Managed Super Fund (SMSF)

Self Managed Super Fund (SMSF) For any assistance or queries with this form, please contact our Support Team on +61 (0)2 8014 4280, or email [email protected] or live chat with us. International Capital Markets Pty Ltd Level 2 /

More information

Information concerning Terms and Conditions of Provision of Payment Services by Citibank Europe plc, pobočka zahraničnej banky

Information concerning Terms and Conditions of Provision of Payment Services by Citibank Europe plc, pobočka zahraničnej banky Information concerning Terms and Conditions of Provision of Payment Services by Citibank Europe plc, pobočka zahraničnej banky I. Introductory Provisions 1. This Information concerning Terms and Conditions

More information

My Sage Pay User Manual

My Sage Pay User Manual My Sage Pay User Manual Page 1 of 32 Contents 01. About this guide..4 02. Getting started.4 Online help Accessing My Sage Pay Test Servers Live Servers The Administrator account Creating user accounts

More information

Using Authorize.net for Credit Card Processing in YogaReg

Using Authorize.net for Credit Card Processing in YogaReg Using Authorize.net for Credit Card Processing in YogaReg 1. Obtain a credit card merchant account. If you already process credit cards via a terminal, you already have one. You can contact your bank,

More information

Rates and Charges. Effective from 6 October 2014

Rates and Charges. Effective from 6 October 2014 Rates and Charges Effective from 6 October 2014 For full details of when and how interest is payable, please refer to your Account Specific Terms and Conditions. Previous interest rates For previous interest

More information

Bitcoin Payment Gateway API

Bitcoin Payment Gateway API Bitcoin Payment Gateway API v0.3 BitPay, Inc. https://bitpay.com 2011-2012 BITPAY, Inc. All Rights Reserved. 1 Table of Contents Introduction Activating API Access Invoice States Creating an Invoice Required

More information

ipayment Gateway API (IPG API)

ipayment Gateway API (IPG API) ipayment Gateway API (IPG API) Accepting e-commerce payments for merchants Version 3.2 Intercard Finance AD 2007 2015 Table of Contents Version control... 4 Introduction... 5 Security and availability...

More information

The Lombard Loan Your Bridge to Financial Flexibility

The Lombard Loan Your Bridge to Financial Flexibility The Lombard Loan Your Bridge to Financial Flexibility Private Banking Investment Banking Asset Management The Lombard Loan. An Attractive and Flexible Financing Opportunity for You. Are you in need of

More information

COMMERCIAL-IN-CONFIDENCE

COMMERCIAL-IN-CONFIDENCE CardEaseMPI a technical manual describing the use of CardEaseMPI 3-D Secure Merchant Plug-In. Authors: Nigel Jewell Issue 2.9. November 2014. COMMERCIAL-IN-CONFIDENCE Copyright CreditCall Limited 2007-2014

More information

How to verify your financial details

How to verify your financial details How to verify your financial details Once you ve linked a bank to your PayPal and verified your financial details, you ll be able to withdraw funds you receive from customers. Verification of your financial

More information

How To Integrate Your Website Into The First Data Internet Payment Gateway (Emea) With A Credit Card And A Creditcard (First Data) (Emma) (Firstdata) (Uk) (European) (For A Credit Union

How To Integrate Your Website Into The First Data Internet Payment Gateway (Emea) With A Credit Card And A Creditcard (First Data) (Emma) (Firstdata) (Uk) (European) (For A Credit Union Internet Payment Gateway Integration Guide First Data Connect Version 2.0 (EMEA) First Data Internet Payment Gateway INTEGRATION GUIDE FIRST DATA CONNECT VERSION 2.0 (EMEA) Contents 1 Introduction 4 2

More information

Trading forex is buying one currency while at the same time selling a different currency.

Trading forex is buying one currency while at the same time selling a different currency. F O R E I G N E X C H A N G E B A S I C S T E R M S U S E D I N F O R E X T R A D I N G The foreign exchange market is global, and it is conducted over-the-counter (OTC) through the use of electronic trading

More information