Wirecard CEE Integration Documentation

Size: px
Start display at page:

Download "Wirecard CEE Integration Documentation"

Transcription

1 Created on: :53 by Wirecard CEE Integration Documentation () Created: :53 Online Guides Integration documentation 1/7

2 Created on: :53 by Integration Guide Overview To start integrating the payment process in your online shop you only need to add an HTMLform with some specific field names and values to your web page displaying the order details of your consumer. By submitting the form, and thus submitting the defined values, your consumer is forwarded to Wirecard Checkout Page. On Wirecard Checkout Page a web page from our Wirecard Checkout Server is shown to your consumer containing an HTMLform where entering of sensitive financial data is possible in a secure manner. After entering these data, your consumer commits the payment and Wirecard Checkout Page handles the entire communication with the financial service provider. After the payment process on the part of the financial service provider is completed, Wirecard Checkout Page informs your online shop about the result of the payment and forwards the consumer to a specific URL in your online shop which depends on the result of the payment process. Your online shop and your web server do not need to be PCIcompliant because all financial issues are handled by Wirecard Checkout Page which is hosted on the Wirecard Checkout Server and is itself PCIcompliant and certified for managing and storing sensitive financial data of your consumers like credit card numbers. There are four possible results which can be returned from Wirecard Checkout Page to your online shop: State Description SUCCESS The payment process has been successfully completed by your consumer. CANCEL The payment process has been canceled by your consumer. FAILURE The payment process has not been finished successfully by your consumer. PENDING The result of the payment process has yet to be determined. Typically occurs on payment methods requiring additional checks or actions by financial service providers or your consumer. When Wirecard retrieves updated information from the financial service provider, either a success or a failure is sent to your online shop. Please be aware that the state pending is only used if the request parameter pendingurl is used. Online Guides Integration documentation 2/7

3 Created on: :53 by For each possible result state a corresponding URL on your web server is called by the Wirecard Checkout Server. These URLs are defined in the HTML form when starting the payment process. Your consumer is redirected to the corresponding URL depending on the result of the payment process. Additionally, Wirecard sends the result of the payment process to the confirmurl. Therefore it is required that your production or test web server is accessible from the Internet. The integration example below is not fully functional on your local host which is typically not accessible from the Internet due to routers, firewalls and security restrictions! A graphical overview of the communication between your online shop and Wirecard Checkout Page from a technical point of view is shown below. Starting the payment process The payment process can be initiated in your online shop by adding an HTMLform to the page you want to start the payment process from. This form consists of a request with required parameters, such as customerid, language, amount, currency, and optional parameters, e.g. confirmurl, ordernumber, customerstatement. These parameters are hidden and not presented to your consumer in your online shop. For all possible request parameters please refer to Request Parameters. Online Guides Integration documentation 3/7

4 Created on: :53 by All parameters are sent as a POST request to the URL The following example can be copied into an html file. When opened in a browser, Wirecard Checkout Page opens on clicking submit. Only the payment process results will not be sent as the URLs are not valid. <form action=' method='post' name='checkout' target='_self'> <input type='hidden' name='customerid' value='d200001' /> <input type='hidden' name='language' value='en' /> <input type='hidden' name='paymenttype' value='select' /> <input type='hidden' name='amount' value='39.90' /> <input type='hidden' name='currency' value='eur' /> <input type='hidden' name='orderdescription' value='order ' /> <input type='hidden' name='successurl' value= ' /> <input type='hidden' name='cancelurl' value= ' /> <input type='hidden' name='failureurl' value= ' /> <input type='hidden' name='pendingurl' value= ' /> <input type='hidden' name='confirmurl' value= ' /> <input type='hidden' name='serviceurl' value= ' /> <input type='hidden' name='displaytext' value='thank you very much for your order.' /> <input type='hidden' name='imageurl' value= ' /> <input type='hidden' name='requestfingerprintorder' value= 'customerid,language,amount,currency,orderdescription,paymenttype,successurl, cancelurl,failureurl,pendingurl,confirmurl,serviceurl,displaytext,imageurl,r equestfingerprintorder,secret' /> <input type='hidden' name='requestfingerprint' value= 'C B27DD42323BF46F123F AA9A0BD E17A057D4751D9767B3F CF74547AAD16C7BDB32FF15970E5D0F640EE58931ADEE7AFC' /> <input type='hidden' name='windowname' value='' /> <input type='submit' name='submit' value='start Checkout'> </form> A fully functional example to run on your server is available as example code on GitHub. Please configure your firewall settings for sending data from your server to checkout.wirecard.com ( :443) correspondingly. Demo and test mode Online Guides Integration documentation 4/7

5 Created on: :53 by For data to test your integration, i.e. demo values for payment method specific values, please refer to demo mode and test mode. Receiving the payment process result Wirecard Checkout Page informs your online shop about the result of your consumers payment by calling one of the URLs you provided when starting the payment process. The call includes values which can be used for further processing. The payment process can result in one of four possible states as described above: Success, Cancel, Failure or Pending. For each state, the corresponding specific URL is called and Wirecard Checkout Page submits return parameters in a POST request to the corresponding URL. Please visit Response Parameters for a detailed description of the parameters you receive which may vary depending on the payment method. Additionally, if the optional request parameter confirmurl is set, Wirecard Checkout Page calls the given URL with a 30 second timeout using the same return values as for successurl, cancelurl, failureurl or pendingurl. If for any reason your server is not reachable at the moment, the confirmation can be sent again at a later time. Please contact our support teams to enable this feature. If you did not set the optional request parameter confirmurl but instead the optional parameter confirmmail, you receive an regarding the result of the payment. Please contact our sales teams to enable this feature. If you set neither the confirmurl nor confirmmail you may not be informed about the result of the payment process if your consumer closes the browser window prematurely! Optionally you have the possibility to get an for each transaction irrespective of the parameters confirmurl or confirmmail. Please contact our sales teams to enable this feature. If your consumer does not finish the payment process within a time frame of 30 minutes, we check if the payment has been successfully completed. If the result of the check is a successful payment, a success notification is sent to the URL set in the request parameter confirmurl. If the payment is not successful a failure notification is sent to the same URL instead. Therefore we strongly recommend setting the confirmurl! Checking if returned values are valid To check the authenticity of the return values sent from the Wirecard Checkout Server to your online shop, compare the responsefingerprint with an hash of the return values. Create a string by concatenating all returned parameters based on the order in the return parameter responsefingerprintorder. Then hash the string with an HMACSHA512 algorithm using the secret as cryptographic key and compare the result with the value of the return parameter responsefingerprint. If both values are identical, the response is authentic, i.e. the confirmation Online Guides Integration documentation 5/7

6 Created on: :53 by was indeed sent by Wirecard. If these values are not identical, recheck the calculation and consider that someone compromised the return values or has sent a possibly false confirmation for the payment. Therefore, do not trust these return values and do not assume that the payment was made even if it appears that way to you! In order to ensure a secure communication it is essential that you never disclose or share your secret with persons who are not involved in developing the online shop! Also, never forward the secret via unsecured communication channels e.g. mail, , fax or instant messaging. When the secret is submitted by fax make sure that the contents of the fax is disclosed only to authorized persons! If you suspect that your secret is known to unauthorized persons contact our support teams immediately to request a new secret! Storing the payment process result To ensure a persistent storage of all data relevant to the payment process of your consumers, it is strongly recommended to save all relevant data either in a file or in a database. Payment related data Please note that connection problems, technical issues on your web server or any issues at your consumer may result in a loss of sessionrelated information regarding your consumer, e.g. the content of the shopping cart or an already generated unique order number for a specific order. Especially if the consumer successfully finished the payment process it may not be possible to correlate the sessionrelated information regarding the order details to the successful payment of your consumer. To prevent such situations we strongly recommend that you store all sessionrelated information during the overall payment process persistently, e.g. in a file or a database. Also use the possibility of custom parameters to pass a unique ID corresponding to a payment process to Wirecard Checkout Page. All of your custom parameters are returned to your online shop as return values after the payment process has been finished. Return values To be able to identify each payment of your consumers at a later time and to correlate them to the corresponding session and order, store all return values of Wirecard Checkout Page in relation to that session and order. This is required to ensure a welldefined relation between the session data, the order of your consumer and the results of the payment process. Therefore, save all return values after the payment process or at least the returned order number you received by Wirecard Checkout Page via successurl, cancelurl, failureurl, pendingurl or the confirmurl. Also ensure that you can relate the values to the data you saved before starting Online Guides Integration documentation 6/7

7 Created on: :53 by Wirecard Checkout Page. Displaying the payment process result to consumers At the end of each payment process, Wirecard Checkout Page calls, if provided, the confirmurl and then forwards your consumer to one of the URLs you defined via the request parameters successurl, cancelurl, pendingurl or failureurl. Best Practices Before starting a payment process and in order to avoid pitfalls ensure that the following issues are fulfilled: Save all relevant data regarding the payment process in a persistent manner, e.g. in a file or a database, including all request parameter values. In the required request parameter orderdescription set a unique ID regarding the session of your consumer. This can be a sessionid, an order number or a debit number. The response parameters are validated via the fingerprint and you are alerted to any failed validations. Wirecard Checkout Journal To check your integration of Wirecard Checkout Page you may use Wirecard Checkout Journal as a debugging tool which gives you an overview of your transaction details when doing a checkout. Note that due to data protection regulations no test mode transactions are possible. Please enter the username and password you receive from Wirecard to have access to all transactions regarding your specific customerid. Wirecard Checkout Journal URL Online Guides Integration documentation 7/7

Wirecard CEE Integration Documentation

Wirecard CEE Integration Documentation Created on: 20171225 08:33 by Wirecard CEE Integration Documentation () Created: 20171225 08:33 Online Guides Integration documentation 1/6 Created on: 20171225 08:33 by Initialization of Wirecard Data

More information

Wirecard CEE Integration Documentation

Wirecard CEE Integration Documentation Wirecard CEE Integration Documentation () Created: 20171118 20:02 1/18 Wirecard Shop Plugin for Salesforce Commerce Cloud (Demandware) Installation guide for Wirecard Checkout Page This installation guide

More information

Wirecard CEE Integration Documentation

Wirecard CEE Integration Documentation Wirecard CEE Integration Documentation () Created: 20181103 22:26 Online Guides Integration documentation 1/6 Integration for Mobile Devices General information No matter which business case is adopted

More information

Wirecard CEE Integration Documentation

Wirecard CEE Integration Documentation Created on: 20180820 04:40 by Wirecard CEE Integration Documentation () Created: 20180820 04:40 Online Guides Integration documentation 1/10 Created on: 20180820 04:40 by Wirecard Shop Plugin for Shopware

More information

Wirecard CEE Integration Documentation

Wirecard CEE Integration Documentation Created on: 20180117 21:34 by Wirecard CEE Integration Documentation () Created: 20180117 21:34 Online Guides Integration documentation 1/9 Created on: 20180117 21:34 by Credit Card General information

More information

Wirecard CEE Integration Documentation

Wirecard CEE Integration Documentation Created on: 20180128 03:18 by Wirecard CEE Integration Documentation () Created: 20180128 03:18 Online Guides Integration documentation 1/9 Created on: 20180128 03:18 by Wirecard Shop Plugin for Magento

More information

Wirecard CEE Integration Documentation

Wirecard CEE Integration Documentation Created on: 20180211 13:26 by Wirecard CEE Integration Documentation () Created: 20180211 13:26 Online Guides Integration documentation 1/6 Created on: 20180211 13:26 by transferfund transferfund is one

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

Wirecard CEE Integration Documentation

Wirecard CEE Integration Documentation Created on: 20180128 03:18 by Wirecard CEE Integration Documentation () Created: 20180128 03:18 Online Guides Integration documentation 1/9 Created on: 20180128 03:18 by Wirecard Shop Plugin for Magento

More information

CentralPayPlus Bank Integration Guide

CentralPayPlus Bank Integration Guide CentralPayPlus Bank Integration Guide Version: 2.0 Date: 2014-09-12 Status: Draft Classification: Restrict Subject: CPAYPlus Int. Spec Reference: NIBSSCPAYPlus2014001 September 2014, NIBSS PLC. The information

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

KOHLS.COM - PRIVACY POLICY

KOHLS.COM - PRIVACY POLICY Welcome to Kohls.com. By using Kohls.com (including www.kohls.com, its related subdomains and microsites, Kohl s mobile website and other Kohl s tools and applications expressly linked to this Privacy

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

Picshare Party Privacy Policy

Picshare Party Privacy Policy The Picshare Party application and the associated Picshare Party website available at picshareparty.com ( Picshare Party ) are owned and operated by Picshare Party, also known as Jeremy Senn Web Application

More information

Nelnet Enterprise Student Account Online Billing and Payment System. Undergraduate Student User Guide

Nelnet Enterprise Student Account Online Billing and Payment System. Undergraduate Student User Guide Nelnet Enterprise Student Account Online Billing and Payment System Undergraduate Student User Guide Student Access You may access Nelnet Enterprise by logging on to your Secure Hollins HIS account at

More information

MasterPass Guide. Business Gateway. V1.1 February Use this guide to:

MasterPass Guide. Business Gateway. V1.1 February Use this guide to: Business Gateway MasterPass Guide V1.1 February 2015 Use this guide to: Learn about the MasterPass digital wallet service Anticipate how MasterPass may affect your system and procedures MasterPass Guide

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS FREQUENTLY ASKED QUESTIONS 1. What is the YES BANK MasterCard SecureCode? The MasterCard SecureCode is a service offered by YES BANK in partnership with MasterCard. This authentication is basically a password

More information

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

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

More information

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

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

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

Magento 2 Community / Enterprise Plugin

Magento 2 Community / Enterprise Plugin Realex Payments Magento 2 Community / Enterprise Plugin Configuration Guide Version: 1.1 A web version of this guide is available on the Realex Developer Hub 1 Document Information Document Name: Magento

More information

NEW DNSDEMES VERSION NEW PERFORMANCE

NEW DNSDEMES VERSION NEW PERFORMANCE NEW DNSDEMES VERSION NEW PERFORMANCE INSTANT REGISTRATION (automatic registration possibility) Up to 250 recorders per account (expandable) Management that allows several users installers with a MASTER

More information

Frequently Asked Questions

Frequently Asked Questions Q. What is GTSE v.2.1.3? Frequently Asked Questions A. GTSE stands for Global Transport Secure ecommerce. GTSE v.2.1.3 is the next generation of Global Payments complete solution for small to mid-sized

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

Frequently Asked Questions (FAQ)

Frequently Asked Questions (FAQ) Your personal information and account security is important to us. This product employs a Secure Sign On process that includes layers of protection at time of product log in to mitigate risk, and thwart

More information

Hardware One-Time Password User Guide August 2018

Hardware One-Time Password User Guide August 2018 Hardware One-Time Password User Guide August 2018 Copyright 2017 Exostar LLC. All rights reserved 1 Version Impacts Date Owner Hardware One-Time Password User Guide Image updates August 2018 M. Williams

More information

WEB ORDER ENTRY SYSTEM USER MANUAL. Produced for

WEB ORDER ENTRY SYSTEM USER MANUAL. Produced for WEB ORDER ENTRY SYSTEM USER MANUAL Produced for TABLE OF CONTENTS Dior Web Order Entry System User Manual Dior Order Entry... 3 Overview... 3 Requesting Process... 3 Signing In... 3 The Order Entry Screen...

More information

HOW TO PASS WA ECART DATA TO MY SECURE SERVER

HOW TO PASS WA ECART DATA TO MY SECURE SERVER HOW TO PASS WA ECART DATA TO MY SECURE SERVER Introduction WA ecart users are able to keep shoppers on their ecommerce sites without passing them to a payment gateway site: we call this process local checkout.

More information

REFUND, PRIVACY POLICY AND TERMS OF USE

REFUND, PRIVACY POLICY AND TERMS OF USE REFUND, PRIVACY POLICY AND TERMS OF USE Crypto Wealth Portfolio, Inc., (CWP, Inc.), A Nevada Corporation, Hereinafter Referred To As (CWP) ALL SALES ARE FINAL. NO REFUNDS! *STORE CREDIT ONLY *60 DAY SATISFACTION

More information

ETSY.COM - PRIVACY POLICY

ETSY.COM - PRIVACY POLICY At Etsy, we value our community. You trust us with your information, and we re serious about that responsibility. We believe in transparency, and we re committed to being upfront about our privacy practices,

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

Configuring PayPal Payments Advanced & Payflow Link for Partners. October 2012

Configuring PayPal Payments Advanced & Payflow Link for Partners. October 2012 Configuring PayPal Payments Advanced & Payflow Link for Partners October 2012 2011 PayPal, Inc. All rights reserved. PayPal is a registered trademark of PayPal, Inc. The PayPal logo is a trademark of PayPal,

More information

WePay Payment Gateway

WePay Payment Gateway WePay Payment Gateway webkul.com /blog/magento-wepay-payment-gateway/ Published On - August 25, 2014 WePay Payment Gateway is available in now your ecommerce store, provide trusted, secure, fast payment

More information

PAYFORT Batch Service

PAYFORT Batch Service PAYFORT Batch Service Document Version: 1.1 April, 2018 Copyright Statement All rights reserved. No part of this document may be reproduced in any form or by any means or used to make any derivative such

More information

TSSA PORTAL TRAINING GUIDE

TSSA PORTAL TRAINING GUIDE TSSA PORTAL TRAINING GUIDE Owner Processes Page 0 Table of Contents Contents 1.1 Redeem Invitation... 2 1.2 Reset Password... 5 1.3 Manage Profile... 7 2.1 View Your Record(s) of Inspection... 8 2.2 Validate

More information

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

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

More information

Best Practices Guide to Electronic Banking

Best Practices Guide to Electronic Banking Best Practices Guide to Electronic Banking City Bank & Trust Company offers a variety of services to our customers. As these services have evolved over time, a much higher percentage of customers have

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

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central Table of Contents Installation Guide... 3 eshop Account Registration in Dynamics 365 Business Central:... 3 eshop Setup

More information

AVAYA LEARNING CENTER END USER GUIDE. Avaya Learning Virtual Campus License Registration Guidelines

AVAYA LEARNING CENTER END USER GUIDE. Avaya Learning Virtual Campus License Registration Guidelines AVAYA LEARNING CENTER END USER GUIDE Avaya Learning Virtual Campus License Registration Guidelines 1 Avaya Learning Virtual Campus License Registration Guide November 2015 ENROLLMENT REGISTRATION PROCESS

More information

Hosted Payment Form. Credit & Debit Card Processing v

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

More information

OKPAY guides INTEGRATION OVERVIEW

OKPAY guides INTEGRATION OVERVIEW Название раздела OKPAY guides www.okpay.com INTEGRATION OVERVIEW 2012 Contents INTEGRATION OVERVIEW GUIDE Contents 1. Payment System Integration 2. OKPAY Integration Types 2.1. Basic Payment Links and

More information

CruiseSmarter PRIVACY POLICY. I. Acceptance of Terms

CruiseSmarter PRIVACY POLICY. I. Acceptance of Terms I. Acceptance of Terms This Privacy Policy describes CRUISE SMARTER policies and procedures on the collection, use and disclosure of your information. CRUISE SMARTER LLC (hereinafter referred to as "we",

More information

Hardware One-Time Password User Guide November 2017

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

More information

Updated September 2014

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

More information

IntegraFlex Employee Portal. Simplify your healthcare finances with convenience, online access to your tax-advantaged benefit account

IntegraFlex Employee Portal. Simplify your healthcare finances with convenience, online access to your tax-advantaged benefit account IntegraFlex Employee Portal Simplify your healthcare finances with convenience, online access to your tax-advantaged benefit account 1 IntegraFlex Employee Portal Contents Getting started... 2 Registration...

More information

Pay with Amazon Express Integration Guide

Pay with Amazon Express Integration Guide Pay with Amazon Express Integration Guide Pay with Amazon Express Integration Guide Copyright 2014-2015 Amazon.com, Inc. or its affiliates. AMAZON, AMAZON PAYMENTS, and AMAZON.COM are registered trademarks

More information

PayDough Overview Click below to learn more or navigate to each page listed

PayDough Overview Click below to learn more or navigate to each page listed PayDough Overview Click below to learn more or navigate to each page listed About PayDough... 2 Sending payments through PayDough... 2 Receiving payments through PayDough... 2 Transactions Limits... 2

More information

Wirecard CEE Integration Documentation

Wirecard CEE Integration Documentation Created on: 20171118 15:11 by Wirecard CEE Integration Documentation () Created: 20171118 15:11 Online Guides Integration documentation 1/8 Created on: 20171118 15:11 by Wirecard Shop Plugin for xt:commerce

More information

USER GUIDES. Peel International Languages Registration Parent Guide

USER GUIDES. Peel International Languages Registration Parent Guide USER GUIDES Peel International Languages Registration Parent Guide June 2017 REGISTERING FOR PEEL INTERNATIONAL LANGUAGES CLASSES To register for any Peel International Languages classes online, please

More information

Online Ordering Instructions

Online Ordering Instructions Online Ordering Instructions Supplied By Table of Contents Login... 2 How to Order Products... 2 Shopping Cart... 3 Checkout... 3 My Account... 7 Login Type www.alliancepromotions.com.au in your preferred

More information

Phone-Based One-Time Password without Proofing (Level 2) User Guide November 2017

Phone-Based One-Time Password without Proofing (Level 2) User Guide November 2017 Phone-Based One-Time Password without Proofing (Level 2) User Guide November 2017 1 Contents About Phone Based One-Time Password... 3 OTP Acquisition and Activation Process Overview... 3 Step 1: Determine

More information

emarket Payment Integration Guide

emarket Payment Integration Guide emarket Payment Integration Guide Version 3.0 July 2017 Trademarks & Copyright Copyright 2017. Blackboard Inc. All rights reserved. Blackboard, Cashnet, Blackboard Transact, Sequoia, BlackboardPay, CampusCash

More information

PATRON PORTAL LOG-IN GUIDE

PATRON PORTAL LOG-IN GUIDE PATRON PORTAL LOG-IN GUIDE BASIC LOG-IN...2 RETRIEVING PATRON PORTAL USERNAME...6 RETRIEVING PATRON PORTAL PASSWORD...9 ACCESSING SUBSCRIBER PRE-SALE TICKETS...12 FOR ADDITIONAL QUESTIONS OR ASSISTANCE:

More information

PROFESSIONAL DEVELOPMENT ADVISOR (PDA) USER GUIDE

PROFESSIONAL DEVELOPMENT ADVISOR (PDA) USER GUIDE PROFESSIONAL DEVELOPMENT ADVISOR (PDA) USER GUIDE PDA Account Registration On the America s Health Insurance Plans website (www.ahip.org/courses ), Click Register and submit your information. Please note

More information

Passing and Returning Variables Version Number 1.7 Last Revision Date: March 1, 2007

Passing and Returning Variables Version Number 1.7 Last Revision Date: March 1, 2007 Passing and Returning Variables Version Number 1.7 Last Revision Date: March 1, 2007 3111 North University Drive, Suite 1000, Coral Springs, FL 33065 P 800.996.0398 F 954.346.3791 Table of Contents INTRODUCTION...

More information

MERCHANT INTEGRATION GUIDE. Version 2.7

MERCHANT INTEGRATION GUIDE. Version 2.7 MERCHANT INTEGRATION GUIDE Version 2.7 CHANGE LOG 1. Showed accepted currencies per payment option. 2. Added validation for RUB payments. INTRODUCTION MegaTransfer provides a wide range of financial services

More information

Web Security: Web Application Security [continued]

Web Security: Web Application Security [continued] CSE 484 / CSE M 584: Computer Security and Privacy Web Security: Web Application Security [continued] Fall 2017 Franziska (Franzi) Roesner franzi@cs.washington.edu Thanks to Dan Boneh, Dieter Gollmann,

More information

FUNCTIONAL SIZE MEASUREMENT USING THE COSMIC METHOD EXAMPLE: ONLINE SHOPPING

FUNCTIONAL SIZE MEASUREMENT USING THE COSMIC METHOD EXAMPLE: ONLINE SHOPPING FUNCTIONAL SIZE MEASUREMENT USING THE COSMIC METHOD EXAMPLE: ONLINE SHOPPING Copyright 2014. All Rights Reserved. Mónica Villavicencio and Alain Abran Permission to copy all or part of this material is

More information

Web Services User Guide

Web Services User Guide This document covers how to process XML Requests and Responses using the Secure Trading Web Services interface. Published: 28 March 2018 3.8 (a) Table of Contents 1 Introduction... 3 1.1 Required steps...

More information

Entering an erequest. Login Page

Entering an erequest. Login Page The erequest is an easy way for an employee to submit a request for goods, services, or payments. No prior knowledge of the University procurement process is necessary for completing this online, electronic

More information

Entering an erequest. Login Page

Entering an erequest. Login Page The erequest is an easy way for an employee to submit a request for goods, services, or payments. No prior knowledge of the University procurement process is necessary for completing this online, electronic

More information

Copyright 2017 Exostar LLC. All rights reserved. Phone One-Time Password User Guide October 2017

Copyright 2017 Exostar LLC. All rights reserved. Phone One-Time Password User Guide October 2017 Phone One-Time Password User Guide October 2017 Table of Contents Activation Process... 2 How do I know if I need Phone OTP?... 2 Purchase Information... 2 Activation... 7 Live Video Proofing... 9 Schedule

More information

Managed Access Gateway One-Time Password Guide Version 1.0 February 2017

Managed Access Gateway One-Time Password Guide Version 1.0 February 2017 1 Managed Access Gateway One-Time Password Guide Version 1.0 February 2017 2 Contents About One Time Password (OTP)... 3 OTP Credential Types... 3 What is the Proofing Upgrade?... 3 How to Determine if

More information

To receive money, just share your enrolled address or U.S. mobile phone number with a friend and ask them to send you money with Zelle.

To receive money, just share your enrolled  address or U.S. mobile phone number with a friend and ask them to send you money with Zelle. Consumer FAQs 1. What is Zelle? Zelle is a fast, safe and easy way to send money directly between almost any bank accounts in the U.S., typically within minutes 1. With just an email address or U.S. mobile

More information

RADIAN6 SECURITY, PRIVACY, AND ARCHITECTURE

RADIAN6 SECURITY, PRIVACY, AND ARCHITECTURE ADIAN6 SECUITY, PIVACY, AND ACHITECTUE Last Updated: May 6, 2016 Salesforce s Corporate Trust Commitment Salesforce is committed to achieving and maintaining the trust of our customers. Integral to this

More information

COACH.COM - PRIVACY POLICY

COACH.COM - PRIVACY POLICY Coach, Inc. (the "Company") and our brands value your trust. We collect certain information when you visit our U.S. site www.coach.com (the Site ), in order to improve your shopping experience and allow

More information

NHD Online Registration Guide: Teacher

NHD Online Registration Guide: Teacher NHD Online Registration Guide: Teacher Introduction Welcome to the National History Day Contest Management system. Within this guide, you will see a description of key terms within the contest system along

More information

ecommerce USER GUIDE

ecommerce USER GUIDE ecommerce USER GUIDE ecommerce USER GUIDE TABLE OF CONTENTS Page Page Page Page Page 7 Page 8 Page 9 Page 0 Page Page Page Page Page 7 Page 8 Page 9 Page 0 What s New in the Latest Version Login Ask to

More information

SEGPAY WooCommerce Plugin SETUP

SEGPAY WooCommerce Plugin SETUP SEGPAY WooCommerce Plugin SETUP Client Documentation Version 1.1 May 11, 2017 Table of Contents Version Tracking... 3 Summary... 4 Pre-Installation Checklist... 4 Plugin Installation... 5 Testing... 9

More information

NWebsec Documentation

NWebsec Documentation NWebsec Documentation Release André N. Klingsheim October 07, 2015 Contents 1 Configuring session security 1 1.1 Protecting session IDs under machinekey................................ 2 1.2 Specifying

More information

ebanking User Guide ebanking echeck edelivery Mobile Banking & Deposit We Make Banking About You

ebanking User Guide ebanking echeck edelivery Mobile Banking & Deposit We Make Banking About You ebanking User Guide ebanking echeck edelivery Mobile Banking & Deposit Member FDIC We Make Banking About You 1-800-288-2229 www.abbybank.com 1 Account Access To log into your ebanking account, go to www.abbybank.com.

More information

Gleeson College Ecommerce Portal Instructions

Gleeson College Ecommerce Portal Instructions Hello Parents, These instructions will guide you through purchasing your child s Tablet or Notebook device, Device Insurance, and Additional Accessories. We look forward to assisting you. Registration

More information

Selling items that your customers can download

Selling items that your customers can download Selling items that your customers can download A users guide to using Reason8 to sell items that can be automatically downloaded. 1 19 th October 2005 Background If you are planning to sell items that

More information

I. INFORMATION WE COLLECT

I. INFORMATION WE COLLECT PRIVACY POLICY USIT PRIVACY POLICY Usit (the Company ) is committed to maintaining robust privacy protections for its users. Our Privacy Policy ( Privacy Policy ) is designed to help you understand how

More information

INTRODUCTION MERCHANT INTEGRATION. Ha noi, 14/06/2015 INTRODUCTION MERCHANT INTEGRATION 1

INTRODUCTION MERCHANT INTEGRATION. Ha noi, 14/06/2015 INTRODUCTION MERCHANT INTEGRATION 1 INTRODUCTION MERCHANT INTEGRATION Ha noi, 14/06/2015 INTRODUCTION MERCHANT INTEGRATION 1 Contents 1. PURPOSE... 3 2. INTEGRATION... 4 2.1 Integrate payment gateway... 4 2.2 Parameters request to OnePAY...

More information

Payment Pages Customisation Version 2

Payment Pages Customisation Version 2 Version 2 Published: 19 February 2018 2.1.10 Table of Contents 1 Introduction... 3 1.1 Useful documents... 3 1.2 Process Overview... 3 2 Profiles... 4 2.1 Requirements... 4 3 Uploading the files... 5 3.1

More information

Employee Security Awareness Training Program

Employee Security Awareness Training Program Employee Security Awareness Training Program Date: September 15, 2015 Version: 2015 1. Scope This Employee Security Awareness Training Program is designed to educate any InComm employee, independent contractor,

More information

Citibank Online Demo

Citibank Online Demo Citibank Online Demo Click on your desired function below to view the steps Credit Cards 2 2 5 7 10 12 14 14 16 18 18 20 The screens and information displayed are for illustration purpose only. Please

More information

B2B Portal User Guide

B2B Portal User Guide B2B Portal User Guide Table of Contents Introduction..3 Logging In.4 Changing your original password......6 Ordering Product....7 Product Waiting Lists......8 Payment Options.. 14 Finalizing your Order...

More information

Get the most from your Health Savings Account. Your guide to your HSA and online account access

Get the most from your Health Savings Account. Your guide to your HSA and online account access Get the most from your Health Savings Account Your guide to your HSA and online account access 1 Health Savings Account Investments Contents Getting started... 2 Accessing the BBPadmin Online Portal...

More information

SIAM R3.0 USER GUIDE

SIAM R3.0 USER GUIDE SIAM R3.0 USER GUIDE Document Reference: 8295 September 2016 Revision: 3 Version Date Author Changes Number 1 Mar 2015 John Lindsay 2 Jun Sam Unsuspending a SIM card description updated. 2016 Smith 3 Sep

More information

Application Layer Security

Application Layer Security Application Layer Security General overview Ma. Angel Marquez Andrade Benefits of web Applications: No need to distribute separate client software Changes to the interface take effect immediately Client-side

More information

Configuration Tab. Cisco WebEx Messenger Administration Guide 1

Configuration Tab. Cisco WebEx Messenger Administration Guide 1 Overview, page 2 Organization Information, page 2 Domain Information, page 3 Resource Management Information, page 4 URL Configuration, page 5 Security Settings, page 6 Directory Settings, page 8 Password

More information

Opaali Portal Quick guide

Opaali Portal Quick guide Opaali Portal Quick guide Company information Telia Finland Oyj Teollisuuskatu 15, 00510 HELSINKI, FI Registered office: Helsinki Business ID 1475607-9, VAT No. FI14756079 1 (40) Page 2 (40) Copyright

More information

ecommerce Features Ability to control the width and height of suggested items on viewitem page. Can now limit the field length on a PDF template.

ecommerce Features Ability to control the width and height of suggested items on viewitem page. Can now limit the field length on a PDF template. ASI Computer Systems announces a Major Release for ecommerce with the release of! Ability to control the width and height of suggested items on viewitem page. Added NPC/Skipjack as a payment processor

More information

FC York Website Registration

FC York Website Registration FC York Website Registration This document is intended to provide a general overview of the FC York website registration process. This guide will explain how to register to the FC York website as a new

More information

SAR Online User Guidance

SAR Online User Guidance SAR Online User Guidance This is a United Kingdom Financial Intelligence Unit (UKFIU) Guidance Note. It is produced in line with the National Crime Agency (NCA) commitment to share perspectives on the

More information

Examples of Cisco APE Scenarios

Examples of Cisco APE Scenarios CHAPTER 5 This chapter describes three example scenarios with which to use Cisco APE: Access to Asynchronous Lines, page 5-1 Cisco IOS Shell, page 5-3 Command Authorization, page 5-5 Note For intructions

More information

Triveneto payment method for Magento 2

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

More information

Paypal Express Checkout

Paypal Express Checkout PayPal Express Checkout Integration Guide v.3.5.0 Table of Contents 1 What is PayPal... Express Checkout? 3 2 PayPal Account... Configuration 4 3 epdq Account... Configuration 5 4 Merchant Integration...

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

Subscriptions and Payment Pages Version 2

Subscriptions and Payment Pages Version 2 Version 2 Published: 26 April 2018 2.1.21 (c) Table of Contents 1 Introduction... 3 1.1 About Subscriptions... 3 1.2 Process Overview... 3 1.3 Pre-requisites... 3 2 Processing a Subscription through Payment

More information

More than just being signed-in or signed-out. Parul Jain, Architect,

More than just being signed-in or signed-out. Parul Jain, Architect, More than just being signed-in or signed-out Parul Jain, Architect, Intuit @ParulJainTweety Why do we care? TRUST & SECURITY EASE OF ACCESS Can t eliminate friction? Delay it Authentication Levels to balance

More information

Copyright 2017 Ingenico epayments. PayPal Express Checkout

Copyright 2017 Ingenico epayments. PayPal Express Checkout PayPal Express Checkout Table of contents 1. Introduction 2. Configuration 2.1 PayPal Account Configuration 2.2 Ingenico epayments Account Configuration 3. Integration: identification and transaction in

More information

FACULTY PROCESS. Add an exam iteration Reporting capabilities

FACULTY PROCESS. Add an exam iteration Reporting capabilities FACULTY PROCESS Add an exam iteration Reporting capabilities www.proctoru.com 855-772 - 8678 contact@proctoru.com FACULTY EXPERIENCE An exam must be added to the ProctorU system before an instructor s

More information

Welcome to the Goddess Purchasing Portal!

Welcome to the Goddess Purchasing Portal! Goddess Purchasing Portal Quick Reference Guide Welcome to the Goddess Purchasing Portal! URL http://www.goddessproductsinc.com/arkansas.html Login Password Your State of Arkansas Email Address Welcome1

More information

Configuring the Cisco APIC-EM Settings

Configuring the Cisco APIC-EM Settings Logging into the Cisco APIC-EM, page 1 Quick Tour of the APIC-EM Graphical User Interface (GUI), page 2 Configuring the Prime Infrastructure Settings, page 3 Discovery Credentials, page 4 Security, page

More information

CyberSource Global Payment Management

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

More information