1. Version Control Introduction Prerequisites Payment Submission Workflow Return Parameter for CallbackURL...

Size: px
Start display at page:

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

Transcription

1 Penthouse, Unit 12 th Floor, API For PaySec Merchants Configuration: Automated Clearing House (ACH) Version: Status: Published Contents 1. Version Control Introduction Prerequisites Payment Submission Workflow Return Parameter for CallbackURL Check Payment Status by CartID Check transaction status in Merchant Site Request for refunds Merchant Notify Setup Frequently Asked Questions Appendix A - Country Codes Appendix B - Currency Codes Appendix C - Sample code to compare signature Appendix D - Payment Status Code... 8 Page 2

2 Penthouse, Unit 12 th Floor, 1. Version Control Version Date Remarks March 12 th, 2015 First version March 12 th, 2015 Added parameter v_accounttype 2. Introduction This documentation is meant for merchants of PaySec. It describes how to integrate merchant system with PaySec, in order to, submit payment information, receive payment status and check payment status. A merchant account may be configured differently for different type of processor and workflow. This documentation is meant for the ACH configuration. 3. Prerequisites Merchant When a merchant is registered with PaySec, the merchant is provided with a Merchant ID. Whitelisting PaySec Server IP PaySec payment processing server IP is Before beginning integration with PaySec, please ensure this IP address is whitelisted in the firewall, for inbound and outbound traffic. 4. Payment Submission Workflow 1. Buyer visits payment form and fill the form detail in merchant website. 2. That information is saved by merchant system. Buyer s browser is redirected to a waiting page (in merchant site). But the payment parameters are posted to PaySec in the background. 3. PaySec server will send payment status to merchant system in the background via HTTP Request method. The URL of the HTTP Request is called CallbackURL. 4. Receiving the payment status in the backend, the waiting page (in the merchant site) will jump out of its refreshing loop and displays the payment status to the buyer. In step 2 above, the payment information is submitted to Page 3

3 The following parameters are submitted to the above URL. Parameter Description Requirement Specification Example v_currency Currency code Refer to Appendix B Currency Codes. Required Alphanumeric. 3 characters. All uppercase. CNY v_amount Amount to pay Required Numeric only. 2 decimal v_firstname Buyer s first name Required Alphanumeric. 18 characters. John v_lastname Buyer s last name Required Alphanumeric. 18 characters. Sayor V_dob Buyer s date of birth Required Format yyyymmdd V_SSN Buyer s Social Security Number (for United States buyers only) Required Alphanumeric. 4 characters v_bill address Required Alphanumeric. 40 characters. john.stuart@gmail.com v_shipstreet Street Optional Alphanumeric. 40 characters. No. 1 Stuart Road v_shipcity City Optional Alphanumeric. 40 characters. Kuala Lumpur v_shipstate State Optional Alphanumeric. 40 characters. Wilayah Persekutuan v_shippost Post code or Zip code Optional Alphanumeric. 40 characters v_shipcountry Country name Optional Refer to Appendix A. MY (ISO 1366 Standard Country Code) v_shipphone Phone number Optional Alphanumeric. 18 characters v_billstreet Street Required Alphanumeric. 40 characters. No. 1 Stuart Road v_billcity City Required Alphanumeric. 40 characters. Kuala Lumpur v_billstate State Required Alphanumeric. 40 characters. Wilayah Persekutuan v_billpost Post code Required Alphanumeric. 40 characters v_billcountry Country name Required Refer to Appendix A. MY (ISO 1366 Standard Country Code) v_billphone Phone number Required Alphanumeric. 18 characters CID Merchant ID* Required Alphanumeric. M104- C- 196 merchantkey Company merchantkey* Required Alphanumeric. 10 characters. UiCFdmLp v_cartid Cart ID Required Alphanumeric. 255 characters JKWN823 v_productno Product numbers Numbering of single or multiple products in cart Optional Alphanumeric. 255 characters. Leave blank if no product. 1;, or 1;2;3;, or 1; 2a; 2b; 3;, or A;B;C; or 1.1;1.2;2;3; v_productcode Product codes Optional Alphanumeric. 255 characters. Leave blank if no product. PKG1028;, or P1028;P2019; v_productdesc Product description Optional Alphanumeric. 255 characters. Leave blank if no product. v_productqty Product quantity Optional Decimal. Leave blank if no product. Nikon N2748;, or Nikon N2746;Nikon N3001; 1; or 1;1;2; Page 4

4 Parameter Description Requirement Specification Example v_productunitpr ice Product prices Optional Decimal. Leave blank if no product. 400; or 1200;20.30; v_productprice Currency Product prices currency Optional Alphanumeric. 3 characters. USD v_subamount Product sub- amounts Optional Decimal. Leave blank if no product. 400; or 1200; 20.30; * provided to merchant who successfully registered with PaySec. Parameter Description Requirement Specification Example v_checkmemo Reason of the payment Required Alphanumeric. 500 characters. Product purchase v_micr Magnetic Ink Check Reader data line Required Alphanumeric. 500 characters. V_DrivingLicens e Buyer s Driving License Number Required Alphanumeric. V_Routing Bank Routing Number Required Alphanumeric v_accountno Account Number Required Alphanumeric V_AccountType Account Type Required Alphanumeric. v_bankname Bank Name Required Alphanumeric. Checking or Saving Bank of America v_checkno Check Number Required Alphanumeric V_CheckName Check Name Required Alphanumeric. John Smith V_CheckType Check Type Required Alphanumeric. Personal or Corporate or Government Parameter Description Requirement Specification Example callbackurl transaction result will send to this URL Required Alphanumeric. 255 characters. m/samples/callbackurl.asp returnurl Buyer s browser will be redirected back to this URL when the transaction is complete. This overrides the returnurl setting in the PaySec backoffice. Optional Alphanumeric. 255 characters. m/samples/returnurl.asp v_ip The buyer s IP address Required Alphanumeric Page 5

5 5. Return Parameter for CallbackURL Parameter name Title Description Example of data mid Merchant ID This is the merchant ID of this transaction. This is useful for our log files to detect anomalies when we try to debug the problem. text M104- C- 196 oid Order ID This is the unique order ID that identifies the transaction. text M104- PO cur Currency This is a 3 letter code of the currency. Example: USD amt Amount This is a numeric value of the transaction amount. numeric status Status 88 - Transferred means this transaction has been successfully completed. Other results mean Declined or Failed transaction status. Refer to Appendix D. text 88 - Transferred cartid Cart ID This is the merchant generated reference number text signature signature This is SHA1 signature that generate by our gateway text To ensure the signature generated was correct, compare the link below for signature comparison. return OrderID here>" When PaySec receives the request or transaction order from the merchant, it will check the hash value it generates to match with the value you as a merchant have included. When your script receives the results of the transaction, you can send your order ID to us, and we will send back a set of Hash code and you need be sure that the return signature matches ours. Do take note that the signature in the response will only be present if the transaction is not in error, that is, for approved and declined transactions. 6. Check Payment Status by CartID Merchant can get Payment Status by CartID in some cases if some transaction are not confirm To check transaction C- 277&merchantKey=DSAS213 Example return result : mid=m104- C- 277&oid=M104- PO- 4890&cur=&amt=1&status=Cancelled&cartid= &createdDateTime= :36:13 Noted that if duplicated cartid payment, it will display mutliple row of result. 7. Check transaction status in Merchant Site Login at and login using the Login ID and Password provided by PaySec. After you have logged in, go to function Transaction History Page. 8. Request for refunds 1. Login to Merchant Site ( 2. Open Transaction History Page 6

6 3. Click on Request refund in the Refund Status column. 4. Enter reason of refund. This is required. 5. Enter merchant password for confirmation. 6. Click on Request button. 7. The status of the refund will change to Pending. 8. When the request for refund process has been completed, the status will change to Completed. 9. Merchant Notify Setup This notify settings is for every time any transaction from your customer end, it will send another copy of transaction receipt to your . Way to setup: 1. Login to Merchant Site ( 2. Open Merchant Notify Settings 3. Enter the address for receive notification if any customer done transaction. 4. Check on Enable checkbox 5. Click Submit 10. Frequently Asked Questions If I have two accounts from PaySec. One Visa and one Mastercard, how do I do the integration? Each merchant account from PaySec has a unique Company ID and Merchant Key. When the buyer uses a Visa card, then use the Company ID of the Visa assigned account. If the buyer uses a Mastercard, then use the Company ID of the Mastercard assigned account. This applies to situation for mult- currencies and multi- product categories (descriptor code). 11. Appendix A Country Codes ISO 3166 Country Code PaySec uses the standard ISO 3166 Two alphabet country code Example : 1. AF is same equal to AFGHANISTAN Country 2. AL is same equal to ALBANIA Country For full listing, please refer to : Page 7

7 12. Appendix B Currency Codes USD CNY MYR SGD IDR THB EUR GBP JPY AUD NOK CAD SEK United States Dollar China Renminbi Malaysia Ringgit Singapore Dollar Indonesia Rupiah Thailand Baht Europe Euro dollar United Kingdom Sterling pound Japan Yen Australia Dollar Norwegian Krone Canada Dollar Sweden Krona Page 8

8 Penthouse, Unit 12 th Floor, 13. Appendix C Sample code to compare signature ASP sample code v_signature = trim(request( signature )) signatureserver = GetTextFromUrl( & request( oid )) Function GetTextFromUrl(url) Dim oxmlhttp Dim strstatustest Set oxmlhttp = CreateObject( MSXML2.ServerXMLHTTP.3.0 ) oxmlhttp.open GET, url, False oxmlhttp.send If oxmlhttp.status = 200 Then GetTextFromUrl = oxmlhttp.responsetext End If End Function if v_signature = signatureserver Then validateresult = Valid Signature ElseIf v_signature <> signatureserver Then End validateresult = Invalid Signature

9 Penthouse, Unit 12 th Floor, V Corporate Centre, L.P. Leviste St. Salcedo Village, Makati City, Philippines, Appendix D Payment Status Code Code Status Description 0 Payment Declined 2 Card IP - BLACK LIST 3 Transaction amount limit 5 IP Duplicate 6 Duplicate 7 Card Duplicate 8 Browser Duplicate 9 High risk transaction 10 MID haven register 12 Invalid Currency code 13 Invalid Md5info 15 MID not open 16 MID channel not open 17 Card bin blacklisted 18 Browser Duplicate 19 Transaction processing, please check status in later 25 Message error 26 Amount over limit 30 Phone more than 1 times. Daily limit reached 66 Failed 67 Rejected. High risk / fraud 88 Transferred End of document - - -

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

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

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

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

MERCHANT INTEGRATION GUIDE. Version 2.8

MERCHANT INTEGRATION GUIDE. Version 2.8 MERCHANT INTEGRATION GUIDE Version 2.8 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

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

Merchant Setup and Administration Guide

Merchant Setup and Administration Guide Merchant Setup and Administration Guide Last updated: September, 2012 PayPal Merchant Setup and Administration Guide Document Number: 10064.en_US-201209 2012 PayPal, Inc. All rights reserved. PayPal is

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

Process Transaction API

Process Transaction API Process Transaction API Document Version 5.9 March 2011 For further information please contact Beanstream customer support at (250) 472-2326 or support@beanstream.com. BEAN # Page 2 of 90 Date Overview...

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

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

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

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

Getting Started with Visa Checkout

Getting Started with Visa Checkout Title Page Getting Started with Visa Checkout on the CyberSource Platform September 2015 CyberSource Corporation HQ P.O. Box 8999 San Francisco, CA 94128-8999 Phone: 800-530-9095 CyberSource Contact Information

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

PaperCut Payment Gateway Module Realex Realauth Redirect Quick Start Guide

PaperCut Payment Gateway Module Realex Realauth Redirect Quick Start Guide PaperCut Payment Gateway Module Realex Realauth Redirect Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up,

More information

Adyen MOTO Manual 'Mail Order / Telephone Order' Version 1.06 Adyen B.V.

Adyen MOTO Manual 'Mail Order / Telephone Order' Version 1.06 Adyen B.V. Adyen MOTO Manual 'Mail Order / Telephone Order' Version 1.06 Adyen B.V. Table of Contents 1 Introduction...3 Audience... 3 Changelog... 3 Requirements...3 Interfaces and Integration...4 Payment Methods...4

More information

MiGS Virtual Payment Client Integration Guide. July 2011 Software version: MR 27

MiGS Virtual Payment Client Integration Guide. July 2011 Software version: MR 27 MiGS Virtual Payment Client Integration Guide July 2011 Software version: MR 27 Copyright MasterCard and its vendors own the intellectual property in this Manual exclusively. You acknowledge that you must

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

PaperCut Payment Gateway Module CyberSource Quick Start Guide

PaperCut Payment Gateway Module CyberSource Quick Start Guide PaperCut Payment Gateway Module CyberSource Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up, and testing the

More information

Merchant One Payment Systems Integration Resources. Direct Post API Documentation June 2007

Merchant One Payment Systems Integration Resources. Direct Post API Documentation June 2007 Merchant One Payment Systems Integration Resources Direct Post API Documentation June 2007 Table of Contents Methodology... 2 Direct Post Method (Server to Server) FIG. 1... 2 Transaction Types... 3 Sale

More information

Set Up and Maintain Customer Support Tools

Set Up and Maintain Customer Support Tools Set Up and Maintain Customer Support Tools Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

3. From the Merchant Administration drop down select VCS Interfacing (page1)

3. From the Merchant Administration drop down select VCS Interfacing (page1) VCS INTEGRATION PROCEDURE 1. Log into VCS Admin Login / Virtual Terminal 2. Select Merchant Administration 3. From the Merchant Administration drop down select VCS Interfacing (page1) Set the fields to

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

The Wells Fargo Payment Gateway Business Center. User Guide

The Wells Fargo Payment Gateway Business Center. User Guide The Wells Fargo Payment Gateway Business Center User Guide Contents 1 Introduction 1 About the Wells Fargo Payment Gateway service Business Center 1 About this guide 2 Access the Business Center 2 Log

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

PaperCut Payment Gateway Module - RBS WorldPay Quick Start Guide

PaperCut Payment Gateway Module - RBS WorldPay Quick Start Guide PaperCut Payment Gateway Module - RBS WorldPay Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up and testing

More information

PROCESS TRANSACTION API

PROCESS TRANSACTION API PROCESS TRANSACTION API Document Version 8.7 May 2015 For further information please contact Digital River customer support at (888) 472-0811 or support@beanstream.com. 1 TABLE OF CONTENTS 2 Lists of tables

More information

Virtual Terminal User s Guide

Virtual Terminal User s Guide Virtual Terminal User s Guide For Professional Use Only Currently only available in English. A usage Professional Uniquement Disponible en Anglais uniquement pour l instant. Last updated: August 2009 PayPal

More information

SecurePay Batch File Specification & Upload Procedure

SecurePay Batch File Specification & Upload Procedure SecurePay Batch File Specification & Upload Procedure Document Control Description SecurePay Batch File Specification & Upload Procedure Creation Date 18/08/2009 Created By SecurePay Version 1.6 Date updated

More information

Fraud Detection. Configuration Guide for the Fraud Detection Module v.4.2.0. epdq 2014, All rights reserved.

Fraud Detection. Configuration Guide for the Fraud Detection Module v.4.2.0. epdq 2014, All rights reserved. Configuration Guide for the Fraud Detection Module v.4.2.0 Table of Contents 1 What is the... Fraud Detection Module? 4 1.1 Benefits 1.2 Access 1.3 Contents... 4... 4... 4 2 Fraud detection... activation

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

TABLE OF CONTENTS. ipay / Magento Implementation Guide 2 Copyright 2012 Planet Payment, Inc. All Rights Reserved.

TABLE OF CONTENTS. ipay / Magento Implementation Guide 2 Copyright 2012 Planet Payment, Inc. All Rights Reserved. TABLE OF CONTENTS INTRODUCTION... 3 Purpose... 3 Downloading the Magento Extension... 3 Configuring the Magento Extension... 3 Exhibit: Magento Admin Login Screen... 3 Payment Processing Options with ipay

More information

Three Step Redirect API V2.0 Patent Pending

Three Step Redirect API V2.0 Patent Pending Three Step Redirect API V2.0 Patent Pending Contents Three Step Redirect Overview... 4 Three Step Redirect API... 4 Detailed Explanation... 4 Three Step Transaction Actions... 7 Step 1... 7 Sale/Auth/Credit/Validate/Offline

More information

WEB TERMINAL AND RECURRING BILLING

WEB TERMINAL AND RECURRING BILLING PROCESSING TRANSACTIONS WITH WEB TERMINAL AND RECURRING BILLING Document Version 1.4 December 2013 For further information please contact Digital River customer support at 0800 756 3350 or clientsupport.uk@digitalriver.com.

More information

API Integration Payment21 Recurring Billing

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

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

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

MiGS Merchant Administration Guide. July 2013 Software version: MR 29

MiGS Merchant Administration Guide. July 2013 Software version: MR 29 MiGS Merchant Administration Guide July 2013 Software version: MR 29 Copyright MasterCard and its vendors own the intellectual property in this Manual exclusively. You acknowledge that you must not perform

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

ANZ egate Virtual Payment Client

ANZ egate Virtual Payment Client ANZ egate Virtual Payment Client Integration Notes Contents Purpose of notes 3 For enquiries and support 3 Contents of ANZ egate kit 3 Sample Codes 3 Bank Hosted, Merchant Hosted and Merchant Hosted with

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

Virtual Terminal User s Guide

Virtual Terminal User s Guide Virtual Terminal User s Guide For Professional Use Only Currently only available in English. A usage Professional Uniquement Disponible en Anglais uniquement pour l instant. Last updated: June 2008 PayPal

More information

Fraud Detection Module (basic)

Fraud Detection Module (basic) Table of contents 1. Introduction 1.1 Benefits 1.2 Contents 2. Activation and configuration 2.1 Blocking rules 2.1.1 Card country 2.1.2 IP address country 2.1.3 Country consistency 2.1.4 3-D Secure 2.2

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

MONETA.Assistant API Reference

MONETA.Assistant API Reference MONETA.Assistant API Reference Contents 2 Contents Abstract...3 Chapter 1: MONETA.Assistant Overview...4 Payment Processing Flow...4 Chapter 2: Quick Start... 6 Sandbox Overview... 6 Registering Demo Accounts...

More information

Merchant Integration Guide

Merchant Integration Guide Merchant Integration Guide Card Not Present Transactions January 2012 Authorize.Net Developer Support http://developer.authorize.net Authorize.Net LLC 082007 Ver.2.0 Authorize.Net LLC ( Authorize.Net )

More information

vrealize Business Standard Installation and Administration Guide

vrealize Business Standard Installation and Administration Guide vrealize Business Standard Installation and Administration Guide vrealize Business Standard 6.0.0 This document supports the version of each product listed and supports all subsequent versions until the

More information

CloudQR Software Usage Guide

CloudQR Software Usage Guide CloudQR Software Usage Guide 1 Document Release 17/09/2014 0.1 - Document Tracking Version ID User Changed By Dated Comments 1 David Morrison 18/01/2014 Initial draft created. 2 Thomas Morrison 27/01/2014

More information

Gateway Direct Post API

Gateway Direct Post API Gateway Direct Post API http://merchantguy.com @MerchantGuy Questions? info@merchantguy.com Contents Methodology....3! Direct Post Method (Server to Server FIG. 1...3 Transaction Types.....4! Sale (sale)..4!

More information

Refer to the Integration Guides for the Connect solution and the Web Service API for integration instructions and issues.

Refer to the Integration Guides for the Connect solution and the Web Service API for integration instructions and issues. Contents 1 Introduction 4 2 Processing Transactions 5 2.1 Transaction Terminology 5 2.2 Using Your Web Browser as a Virtual Point of Sale Machine 6 2.2.1 Processing Sale transactions 6 2.2.2 Selecting

More information

Merchant Integration Guide

Merchant Integration Guide Merchant Integration Guide Card Not Present Transactions Authorize.Net Customer Support support@authorize.net Authorize.Net LLC 071708 Authorize.Net LLC ( Authorize.Net ) has made efforts to ensure the

More information

Merchant Web Services API Advanced Integration Method (AIM)

Merchant Web Services API Advanced Integration Method (AIM) Title Merchant Web Services API Advanced Integration Method (AIM) XML Guide October 2015 Authorize.Net Developer Support http://developer.authorize.net Authorize.Net LLC 082007 Ver.2.0 Authorize.Net LLC

More information

Payment Acceptance Strategies in a Global Ecommerce Environment

Payment Acceptance Strategies in a Global Ecommerce Environment A division of Pivotal Payments Payment Acceptance Strategies in a Global Ecommerce Environment Presented by: Patrick Huynh, Senior Vice President, Client Solutions Introduction About GlobalOne GlobalOne

More information

vrealize Business Standard Installation and Administration Guide

vrealize Business Standard Installation and Administration Guide vrealize Business Standard Installation and Administration Guide vrealize Business Standard 6.1.0 This document supports the version of each product listed and supports all subsequent versions until the

More information

ipay88 Recurring Payments V1.0 CHAPTER GUIDE

ipay88 Recurring Payments V1.0 CHAPTER GUIDE CHAPTER GUIDE Overview 3 Login to Recurring Payments Page 4 Recurring Payments via Email 5 Recurring Payments via Website 10 Online Report 16 Modify or Terminate A Subscription 18 FAQ 22 OVERVIEW When

More information

Ariba Network Account Configuration Guide

Ariba Network Account Configuration Guide Ariba Network Account Configuration Guide Topics 1. Log in Ariba Supplier Website 2. Company Profile 3. Account Settings 4. Network Settings 5. My Account 6. Test Account Creation 7. Enablement Tasks 8.

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

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

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

Merchant Administration

Merchant Administration Merchant Administration User Guide Version 4.2.0 For TNSPay 4.2 Disclaimer Copyright 2010 TNS Payment Technologies Pty Ltd ("TNS"). All rights reserved. This document is provided by TNS on the basis that

More information

Virtual Terminal & Online Portal

Virtual Terminal & Online Portal Authipay Gateway Virtual Terminal & Online Portal User Guide Version 5 (EMEA) Virtual Terminal & Online Portal User Guide Version 5 (EMEA) CONTENTS 1 Introduction... 5 2 Processing Transactions... 6 2.1

More information

Barclaycard SmartPay. Hosted Payment Page Integration Guide. Version 3.0 released April 2012

Barclaycard SmartPay. Hosted Payment Page Integration Guide. Version 3.0 released April 2012 Barclaycard SmartPay Hosted Payment Page Integration 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

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

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

1992 ISDA FX and Currency Option Definitions

1992 ISDA FX and Currency Option Definitions 1992 ISDA FX and Currency Option Definitions ISDA INTERNATIONAL SWAPS AND DERIVATIVES ASSOCIATION, INC. Copyright 1992 by INTERNATIONAL SWAPS AND DERIVATIVES ASSOCIATION, INC., 1270 Avenue of the Americas,

More information

Paynow 3rd Party Shopping Cart or Link Integration Guide

Paynow 3rd Party Shopping Cart or Link Integration Guide Paynow 3rd Party Shopping Cart or Link Integration Guide Version 1.0.5 15 August 2014 A guide outlining merchant integration into Paynow for externally hosted shopping carts or applications. For details

More information

Setting Up a CyberSource Web Payment Account

Setting Up a CyberSource Web Payment Account Setting Up a CyberSource Web Payment Account Contents Setting Up a CyberSource Web Payment Account... 1 Introduction... 1 Setting Up a CyberSource Account... 2 Get Username and Password... 2 Log in to

More information

Global Transport Secure ecommerce Decision Tree

Global Transport Secure ecommerce Decision Tree Global Transport Secure ecommerce Decision Tree Development work* or software configuration** is required. Please be prepared to engage a webmaster/developer for assistance Are you looking for a hosted

More information

VISA EASY PAYMENT SERVICE MERCHANT BEST PRACTICES

VISA EASY PAYMENT SERVICE MERCHANT BEST PRACTICES VISA EASY PAYMENT SERVICE MERCHANT BEST PRACTICES VISA EASY PAYMENT SERVICE MERCHANT BEST PRACTICES Table of Contents Make Payment Processing Faster While Increasing Sales........................1 Visa

More information

A: This will depend on a number of factors. Things to consider and discuss with a member of our ANZ Merchant Services team are:

A: This will depend on a number of factors. Things to consider and discuss with a member of our ANZ Merchant Services team are: 1 ANZ egate FAQ s Contents Section 1 General information: page 1 Section 2 Technical information for ANZ egate Merchants: page 5 November 2010 Section 1 General information Q: What is ANZ egate? A: ANZ

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

PaperCut Payment Gateway Module PayPal Website Payments Standard Quick Start Guide

PaperCut Payment Gateway Module PayPal Website Payments Standard Quick Start Guide PaperCut Payment Gateway Module PayPal Website Payments Standard Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting

More information

Programming for the Netregistry E-commerce Gateway

Programming for the Netregistry E-commerce Gateway Commercial in Confidence Programming for the Netregistry E-commerce Gateway Commercial and in Confidence Copyright 2013 - Netregistry Group Ltd 1 This work is copyright. Other than as permitted by law,

More information

Virtual Terminal User s Guide

Virtual Terminal User s Guide Virtual Terminal User s Guide For Professional Use Only Currently only available in English. A usage Professional Uniquement Disponible en Anglais uniquement pour l instant. Last updated: June 2009 PayPal

More information

Integration Guide Last Revision: July 2004

Integration Guide Last Revision: July 2004 Last Revision: July 2004 PayPal Integration Guide 2004 PayPal, Inc. All Rights Reserved. PayPal and the PayPal logo are registered trademarks of PayPal, Inc. Designated trademarks and brands are the property

More information

Merchant Interface Online Help Files

Merchant Interface Online Help Files Merchant Interface Online Help Files REGAL t e c h n o l o g i e s t h e f u t u r e o f p a y m e n t s Table of Contents Merchant Interface Online Help Files... 1 Tools... 2 Virtual Terminal... 7 Submit

More information

Ease-E-Club Client Management Software by Computerease

Ease-E-Club Client Management Software by Computerease Ease-E-Club Client Management Software by Computerease Bluefin Payment Setup and Processing The Bank Export, Point of Sale and Client file are integrated with Bluefin Payment Systems: http://bluefin.com/computerease.

More information

PayPal PRO Sandbox Testing

PayPal PRO Sandbox Testing PayPal PRO Sandbox Testing Updated June 2014 2014 GoPrint Systems, Inc., All rights reserved. PayPal Pro Configuration Guide 1 PayPal Pro Test Mode (Sandbox) Overview The PayPal test account, referred

More information

Response Code Details

Response Code Details Section 4 Transaction Response If the original transaction was approved, and a value was passed in the duplicate window field, the payment gateway response will also include the authorization code for

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

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

Card-Present Transactions Implementation Guide Version 1.0

Card-Present Transactions Implementation Guide Version 1.0 Card-Present Transactions Implementation Guide Version 1.0 Page 2 of 41 Table of Contents INTRODUCTION...4 ADVANCED INTEGRATION METHOD (AIM)...5 What is the Advanced Integration Method (AIM)?...5 How Does

More information

Buckaroo Payment Engine 3.0 Implementation Manual HTML gateway

Buckaroo Payment Engine 3.0 Implementation Manual HTML gateway This manual and the functionality described herein may be subject to changes. Please take this into account when implementing the described functionality. Buckaroo Payment Engine 3.0 Implementation Manual

More information

Skipjack Merchant Services Guide

Skipjack Merchant Services Guide Skipjack Merchant Services Guide COPYRIGHT INFORMATION Skipjack Financial Services and Skipjack Transaction Network are registered trademarks of the Bradley-Madison Company. It is the policy of Skipjack

More information

Microsoft Dynamics GP 2013. Web Services Installation and Administration Guide

Microsoft Dynamics GP 2013. Web Services Installation and Administration Guide Microsoft Dynamics GP 2013 Web Services Installation and Administration Guide Copyright Copyright 2013 Microsoft Corporation. All rights reserved. Limitation of liability This document is provided as-is.

More information

A BETTER WAY TO PAY Unified Merchants API (UMAPI).Net Integration Manual

A BETTER WAY TO PAY Unified Merchants API (UMAPI).Net Integration Manual A BETTER WAY TO PAY Unified Merchants API (UMAPI).Net Integration Manual Version 2.3 Contents 1 INTRODUCTION... 5 1.1 Purpose and Objective... 5 1.2 Audience... 5 1.3 Assumptions / Exclusions... 5 1.4

More information

Vendor Registration. Rev. 3/26/2013 Vendor Registration Page 1

Vendor Registration. Rev. 3/26/2013 Vendor Registration Page 1 Thank you for your interest in becoming a vendor to the State of Louisiana. It is crucial that we avoid duplicate registrations to facilitate correct award and payment processing. 1. Please go to https://lagoverpvendor.doa.louisiana.gov/irj/portal/anonymous?guest_user=self_reg

More information

How To Use Paypal Online Currency With A Credit Card And Bank Account On A Pc Or Credit Card On A Website From A Pc (Paypal) On A Paypal Website (Online) On Pc Or Paypal On A Computer Or Pc (

How To Use Paypal Online Currency With A Credit Card And Bank Account On A Pc Or Credit Card On A Website From A Pc (Paypal) On A Paypal Website (Online) On Pc Or Paypal On A Computer Or Pc ( PayPal Website Payments Standard Checkout Integration Guide For Professional Use Only Currently only available in English. A usage Professional Uniquement Disponible en Anglais uniquement pour l'instant.

More information

INTRODUCTION MERCHANT INTEGRATION. Ha noi, 10/7/2012

INTRODUCTION MERCHANT INTEGRATION. Ha noi, 10/7/2012 INTRODUCTION MERCHANT INTEGRATION Ha noi, 10/7/2012 0 Index Index... 1 1. Purpose... 2 2. Content... 2 2.1 Integrate payment gateway... 2 2.2 Edit the specifications of international payment gateway...

More information

Subscriptions and Recurring Payments Guide

Subscriptions and Recurring Payments Guide Subscriptions and Recurring Payments Guide For Professional Use Only Currently only available in English. A usage Professional Uniquement Disponible en Anglais uniquement pour l'instant. Last Updated:

More information

Web Services Credit Card Errors A Troubleshooter

Web Services Credit Card Errors A Troubleshooter Web Services Credit Card Errors A Troubleshooter January 2012 This manual and accompanying electronic media are proprietary products of Optimal Payments plc. They are to be used only by licensed users

More information

Hosted Credit Card Forms Implementation Guide

Hosted Credit Card Forms Implementation Guide Hosted Credit Card Forms Implementation Guide Merchant implementation instructions to integrate to the Setcom s hosted credit card forms. Covers: fraud screening, Verified by Visa, MasterCard SecureCode

More information

Visa Easy Payment Service. Merchant Best Practices

Visa Easy Payment Service. Merchant Best Practices Visa Easy Payment Service Merchant Best Practices Table of Contents Make Payment Processing Faster While Increasing Sales........................1 Visa Easy Payment Service..................................................

More information

API Integration Guide

API Integration Guide API Integration Guide INTEGRATION GUIDE VERSION 2.2 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

e-brc Bank Realisation Certificate Message Exchange with Banks Version: 1.2.4

e-brc Bank Realisation Certificate Message Exchange with Banks Version: 1.2.4 e-brc Bank Realisation Certificate Message Exchange with Banks Version: 1.2.4 Directorate General of Foreign Trade Ministry of Commerce & Industry Government of India Prepared by National Informatics Centre

More information

Mail & Telephone Order Payments Service (WorldAccess) Guide. Version 4.3 February 2014 Business Gateway

Mail & Telephone Order Payments Service (WorldAccess) Guide. Version 4.3 February 2014 Business Gateway Mail & Telephone Order Payments Service (WorldAccess) Guide Version 4.3 February 2014 Business Gateway Table Of Contents About this Guide... 1 Update History... 1 Copyright... 1 Introduction... 2 What

More information

Electronic Check Services

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

More information

Merchant Web Services API

Merchant Web Services API Merchant Web Services API Advanced Integration Method (AIM) XML Guide February 2013 Authorize.Net Developer Support http://developer.authorize.net Authorize.Net LLC 082007 Ver.2.0 Authorize.Net LLC ( Authorize.Net

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