Welcome to Commerce SDK

Size: px
Start display at page:

Download "Welcome to Commerce SDK"

Transcription

1

2

3 Contents Welcome to Commerce SDK...5 Environment and Requirements for Commerce SDK...5 About This Release...6 What s in this Release?...6 Getting Started...6 Using the SDK...7 Explaining Commerce SDK s Architecture...8 Running the Sample Application...8 How to Get Commerce SDK Credentials...9 Performing a Transaction...9 Printing or ing a Receipt...12 Code Explanations...13 Transaction.begin...14 account.gettransactionprocessor()...17 Printing or ing a Receipt...18 Support Contacts...19

4

5 Welcome to Commerce SDK As a beta user of Commerce SDK, thank you for relying on us to support your payment system. The Commerce SDK will allow you to perform an EMV transaction using an Ingenico isc250 EMV-ready terminal as well as print receipts with the Star Micronics TSP650II printer. Let s look at some important information that is required to use Commerce SDK. Included in this SDK is This documentation Commerce SDK functionality Sample Java application that shows the usage of Commerce SDK Code snippets for initiating EMV transactions and printer transaction receipts Environment and Requirements for Commerce SDK Commerce SDK requires the following prerequisites: Java bit (currently included in beta package) Windows 7+ USB Port Access (1 for isc for Printer) Direct Internet access 1. Software Development Kit. (n.d.). Retrieved June 30, 2015, from 5

6 About This Release This is an early, non-production release. Please report any issues or problems you encounter to This release is intended for Developer use only. The only components in this release of the Commerce SDK that are functional are the EMV integration and the ability to perform EMV sales. What s in this Release? As mentioned, EMV integration and sales transactions are included. The devices that are supported include isc250 and the Star Micronics TSP650II printer. This release is for transactions that are supported through the Converge gateway (DEMO environment only). Getting Started You will be sent the following three files: 1. vcredist.zip 2. IngenicoUSBDrivers_2.60_setup.exe 3. ElavonCommerce.zip Unzip vcredist.zip. This will contain two redistribution files, one for 2012 and one for Install both files by double-clicking them. After installing the redistribution files, double-click IngenicoUSBDrivers_2.60_setup.exe. Please note, when you arrive at the below screenshot, you can click Next without entering any data. 6

7 Using the SDK Unzip the ElavonCommerce.zip to your computer s hard drive. This folder will contain all your working files for Commerce SDK. 1. jre7 - This folder contains all the Java 32-bit files and dependencies. 2. libs - This folder contains all of the jar dependencies for Commerce SDK. 3. nativelibs - This folder contains all the DLL dependencies for Commerce SDK. 4. desktop-sampleapp.bat - This batch file launches the sample application for learning Commerce SDK. 5. src.zip - This zip file contains the source code of the Desktop sample application. 7

8 Explaining Commerce SDK s Architecture The follow diagram shows how Commerce SDK interacts with your application, terminals, and Converge. As a 3rd Party Integrator you will need to create the Point of Sale (POS) application in the above image, providing the details required. The transaction information will then be passed by your application to Commerce SDK. Commerce SDK will then securely interact with the RBA Card Reader and transfer data to the Converge platform over the Web for authorization. Converge will send back a response, which Commerce SDK will then present back to your application. Your POS will also need to communicate with Commerce SDK to print receipts for your transactions. Please see Code Explanations on page 13 for more on what is specifically required from you. Running the Sample Application From your ElavonCommerce deployment folder, select the desktop-sampleapp.bat file. Desktop GUI will load. 8

9 From here you will need to get demo environment credentials in order to proceed. How to Get Commerce SDK Credentials In order to use Commerce, you will need Converge credentials. Converge is Elavon s omnipayments platform. For now, the process to acquire credentials requires calling or ing Elavon support. The process to receive test credentials is as follows: 1. Call or techsupp@elavon.com 2. Be sure to say you are a Commerce SDK Beta Customer and need Converge Demo credentials. Support will ask for the following details: a. Your Company Name b. Primary Contact Name c. Primary Contact Number d. Primary Address 3. Within 24 hours after first contact, you will receive your test credentials. Please note, these test credentials will expire after 30 days. Performing a Transaction With your demo credentials, select Account from the top menu of the Desktop GUI application. On that menu, select Credentials and enter your demo environment credentials. 9

10 Now, select Account > Get Account Info to check your credentials. If the credentials are successful, you will see something close to this response: Tue Jul 07 09:49:20 EDT 2015 INFO: Get Account Info Tue Jul 07 09:49:21 EDT 2015 INFO: Account info retrieved: Tue Jul 07 09:49:21 EDT 2015 INFO: name:grove SERVICE Tue Jul 07 09:49:21 EDT 2015 INFO: currency:usd Tue Jul 07 09:49:21 EDT 2015 INFO: AccountListener accountdefaultcurrencydidchange USD Now, your deployment is prepared, connect your isc250 PIN pad via USB to the computer and to the printer. Now, in the Sample Application, select Transaction > Begin Transaction. You will have a pop-up asking for a transaction and tender type. Select your desired transaction and tender type and press OK. In the beta, only Transaction Type - SALE and Tender Type - CREDIT_CARD work. When you select OK, you ll be prompted to enter an amount for the transaction. Enter your desired value noting it is in minor units, meaning it assumes the last two digits are after a decimal place (e.g = $100.00). Press OK to process this transaction. 10

11 Once you press OK, follow the instructions on the PIN pad. When you insert a card into the PIN pad, you will see the following result in the GUI. Finally, when the transaction has successfully finished, you will see the following. 11

12 Printing or ing a Receipt Select Transaction > Print Receipt or Transaction > Receipt. This will print or the receipt. 12

13 Code Explanations The following code snippets (from the provided sample application) will cover the main processes of the SDK, namely beginning a transaction and printing or ing a receipt. Please consult the source code inside of the src.zip to see the actual code. The majority of the transaction code is in Transaction.java. Before anything is done, the public class Transaction is created which contains the member variables that are required to initiate and complete an EMV transaction. 13

14 An important interface that must be implemented is the ECLTransactionProcessingListener. The functions declared in the ECLTransactionProcessingListener interface serve as callbacks during the processing of a transaction for Commerce SDK to provide progress updates, to notify of the completion of a transaction, to notify of the failure of the transaction, and to request information that Commerce SDK require to complete the transaction (such as a signature). In the sample code, you can see the provided implementation of the interface. Before starting a transaction, the application must have an instance of a transaction and of a tender. The sample app calls into Commerce SDK to request an instance of each of these interfaces based on the specific type. The supported types in this release are SALE and CREDIT_CARD. Now, we ll begin the transaction. Transaction.begin When the begin method is called, the user will be prompted for a transaction type and tender type. 14

15 Here we see the tender and transaction instances being requested from Commerce SDK. Commerce returns the instances. Now, we can begin processing the transaction. You will be prompted for the Amount Due, which is entered in minor units. Also, based on the transaction type, the user may be asked for Amount Tendered. After this step, all the information needed to process a transaction has been collected. processtransaction method is now called with the created ECLTenderInterface and ECLTransactionInterface. This method provides the implementation of the ECLTransactionProcessingListener protocol. 15

16 16

17 account.gettransactionprocessor() In the previous example, we can see how to pass values to Commerce. Let s focus on account. gettransactionprocessor(). When calling processtransaction, we pass three parameters: Transaction SALE (only one supported in Commerce SDK Beta currently) PRE_AUTH ACTIVATION RELOAD Tender: How are we paying (Cash, Credit, Debit) Listener: This parameter provides the implementation of the ECLTransactionProcessingListener protocol. You must provide a full implementation for ECLTransactionProcessingListener. For example, the shouldprovideinformation callback requires the integrator to include information like signature capture data, or a voice referral approval code. You should evaluate everything inside of ECLTransactionRequirementsInterface to determine what Commerce SDK expects. 17

18 Printing or ing a Receipt The printreceipt and receipt methods both call a helper method which creates a receipt object based on an enumerated receipt output type. The helper method then calls the sendthereceipt method and passes the newly created receipt object and the receipt output type. sendthereceipt method contains an implementation of the ECLReciptProcessingListener protocol. For the receiptshouldprovidelocalizedpercentagetext override, you should return the amount in the figure parameter formatted as a percentage for the user s current locale. For the receiptshouldprovidelocalizedtext override, you should return a localized string for the ECLReceiptTextIdentifier using the user s current locale. These strings will be places on the receipt so you must provide for all possible values of the ECLReceiptTextIdentifier. For the receiptshouldprovidelocalizedminorunitstext override, you should return the amount in the amountinminorunits parameter formatted as a monetary value using the currencycode parameter. 18

19 Support Contacts Please contact for any issues that may arise with your Commerce SDK beta experience. 19

20

CONVERGE MOBILE User Guide - ios

CONVERGE MOBILE User Guide - ios How to take payments with the Converge Mobile app? CONVERGE MOBILE User Guide - ios Version 1.6 CONTACT 4576 Yonge Street, Suite 200, Toronto, ON M2N 6N4, Canada DOWNLOAD APP Store Google Play 2017 Elavon

More information

CONVERGE MOBILE User Guide - ios

CONVERGE MOBILE User Guide - ios How to take payments with the Converge Mobile app? CONVERGE MOBILE User Guide - ios Version 1.6 CONTACT Two Concourse Parkway, Suite 800 Atlanta, GA 30328 DOWNLOAD APP Store Google Play 2017 Elavon Inc.

More information

CONVERGE MOBILE User Guide - Android

CONVERGE MOBILE User Guide - Android How to take payments with the Converge Mobile app? CONVERGE MOBILE User Guide - Android Version 1.5 CONTACT Two Concourse Parkway, Suite 800 Atlanta, GA 30328 DOWNLOAD Google Play APP Store 2017 Elavon

More information

CONVERGE MOBILE User Guide - ios

CONVERGE MOBILE User Guide - ios How to take payments with the Converge Mobile app? CONVERGE MOBILE User Guide - ios Version 2.0 CONTACT Two Concourse Parkway, Suite 800 Atlanta, GA 30328 DOWNLOAD APP Store Google Play 2017 Elavon Inc.

More information

CONVERGE MOBILE User Guide - Android

CONVERGE MOBILE User Guide - Android How to take payments with the Converge Mobile app? CONVERGE MOBILE User Guide - Android Version 2.0 CONTACT Two Concourse Parkway, Suite 800 Atlanta, GA 30328 DOWNLOAD Google Play APP Store 2017 Elavon

More information

Keystroke POS Installation Instructions NETePay & Ingenico isc250 RBA Includes Support for EMV-PinDebit

Keystroke POS Installation Instructions NETePay & Ingenico isc250 RBA Includes Support for EMV-PinDebit Keystroke POS Installation Instructions NETePay 5.07.30 & Ingenico isc250 RBA 21.02 Includes Support for EMV-PinDebit Hardware: Ingenico isc250 w/ RBA 21.02 or later, Windows 7 or above Keystroke Software:

More information

ProcessNow Terminal User Guide

ProcessNow Terminal User Guide ProcessNow Terminal User Guide Table of Contents Product Overview ProcessNow Terminal... 3 Initial Setup Welcome Emails... 3 ProcessNow Initial Setup Instructions... 4 Initial Setup - USB - 8006L1 Card

More information

MaxGalaxy Hardware Manual

MaxGalaxy Hardware Manual MaxGalaxy Hardware Manual Getting Started... 2 MaxGalaxy Requirements... 2 Installs Software/ Hardware... 3 Peripheral Service/ Certificate Application... 3 Hardware... 3 Installation Guides... 4 Installing

More information

EMV Installation - ISC250

EMV Installation - ISC250 EMV Installation - ISC250 This instruction manual will guide you through enabling chip reader functionality with RTS. First, you will need to update your account information in RTS. This can be found in

More information

for iphone for iphone

for iphone for iphone for iphone for iphone Table of Contents: Two-Factor Authentication...3 Overview...4 Card reader...4 Bluetooth Card reader...5 Receipt Printer...6 Logging in to ipayment MobilePay...7 Demo Mode...7 Reset

More information

Procedures for implementing ShipRite/Genius

Procedures for implementing ShipRite/Genius Procedures for implementing ShipRite/Genius There are 3 elements need to be setup for the successful loading of the ShipRite/Genius platform. First is the Genius device itself. Next is the Smart Swiper

More information

Table of Contents: ipayment for Android

Table of Contents: ipayment for Android for Android Tablets Table of Contents: Two-Factor Authentication... 3 Card reader... 4 Bluetooth Card reader... 5 Receipt Printer... 6 Logging in to ipayment MobilePay... 7 Demo Mode... 7 Reset Password...

More information

Self Install Guide (Revision 4)

Self Install Guide (Revision 4) (Revision 4) Sensible Cinema Box Office for Windows Version 4.1 - Upgrade from 3.x and 4.0x Featuring Datacap System s PCI Compliant Out-Of-Scope Credit Card Processing Solutions dsipdcx TM and dsiemvus

More information

Verifone VX 805 with Vantiv (Fifth Third) through DataCap

Verifone VX 805 with Vantiv (Fifth Third) through DataCap One Blue Hill Plaza, 16 th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Verifone VX 805 with Vantiv (Fifth Third) through DataCap This

More information

Verifone VX 805 with TSYS (Summit) through DataCap

Verifone VX 805 with TSYS (Summit) through DataCap One Blue Hill Plaza, 16 th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Verifone VX 805 with TSYS (Summit) through DataCap This document

More information

Verifone VX 805 with Mercury through DataCap

Verifone VX 805 with Mercury through DataCap One Blue Hill Plaza, 16 th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Verifone VX 805 with Mercury through DataCap This document provides

More information

Retail Application. Quick Reference Guide. Ingenico Telium United States

Retail Application. Quick Reference Guide. Ingenico Telium United States Retail Application Quick Reference Guide Ingenico Telium United States Color Key Required Merchant Input on Point of Sale Required Customer Input on Internal or External PIN-pad Optional Merchant Input

More information

Envision Credit Card Processing

Envision Credit Card Processing A Guide for Processing Transactions with Envision's Credit Card Module I Table of Contents Part I Credit Card Processing Setup 1 Part II Credit Card Processing 2 1 Entering Tips... 3 2 Processing the Credit

More information

Mobile Pay Plus Android App Guide

Mobile Pay Plus Android App Guide Mobile Pay Plus Android App Guide Document Version 1.01 March 2018 TABLE OF CONTENTS 1 Welcome 1 2 Supported Devices 2 3 Log into the App 3 4 Mobile Pay Plus Menu 5 5 Mobile Pay Plus Settings 6 5.1 Taxes

More information

Verifone VX 805 with First Data Rapid Connect Host through DataCap

Verifone VX 805 with First Data Rapid Connect Host through DataCap One Blue Hill Plaza, 16 th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Verifone VX 805 with First Data Rapid Connect Host through DataCap

More information

QUICK REFERENCE GUIDE Restaurant Application

QUICK REFERENCE GUIDE Restaurant Application Ingenico Telium2 Canada QUICK REFERENCE GUIDE Restaurant Application 2015 Elavon Inc. Elavon is a registered trademark in the United States and other countries. All rights reserved. Apple Pay and Touch

More information

Setting up the Ingenico ipp320 Pinpad for Moneris via USB

Setting up the Ingenico ipp320 Pinpad for Moneris via USB One Blue Hill Plaza, 16 th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Setting up the Ingenico ipp320 Pinpad for Moneris via USB The

More information

Verifone VX 805 with First Data Rapid Connect Host through DataCap

Verifone VX 805 with First Data Rapid Connect Host through DataCap One Blue Hill Plaza, 16 th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Verifone VX 805 with First Data Rapid Connect Host through DataCap

More information

RMS Payment Bridge User s and Setup Guide Version 2.0

RMS Payment Bridge User s and Setup Guide Version 2.0 RMS Payment Bridge User s and Setup Guide Version 2.0 RMS Payment Bridge - User s and Setup Guide v2.0 1 of 53 Table of Contents RMS Payment Bridge... 3 User s Guide... 3 Debit Cards... 4 Debit Cards:

More information

Retail Application Quick Reference Guide

Retail Application Quick Reference Guide Retail Application Quick Reference Guide VeriFone VX 520 Series Color Key Required Merchant Input on Point of Sale Required Cardholder Input on Point of Sale or External PIN Pad Optional Merchant Prompts

More information

Created March Double click the Office Manager icon on the desktop to launch the back office application.

Created March Double click the Office Manager icon on the desktop to launch the back office application. Created March 2009 This application note shows how to set up Star Micronics printers for guest check and kitchen ticket printing from Inborne Technology s Point of Success Premium and Standard Software.

More information

NETePay XML. Installation & Configuration Guide. For Concord EFSnet. Version 3.11

NETePay XML. Installation & Configuration Guide. For Concord EFSnet. Version 3.11 NETePay XML Installation & Configuration Guide Version 3.11 For Concord EFSnet NETePay XML Installation & Configuration Guide Copyright 2007 Datacap Systems Inc. All rights reserved. This manual and the

More information

Users Guide for InstantAccept POS

Users Guide for InstantAccept POS Users Guide for InstantAccept POS How to make a sale: Go in to Make a Sale on your QuickBooks POS. Select your item. Choose what type of payment you are taking. If you are using a card reader, click swipe

More information

Portico VT. Installation Guide FOR HEARTLAND MERCHANT USERS JULY 2015 V2.9

Portico VT. Installation Guide FOR HEARTLAND MERCHANT USERS JULY 2015 V2.9 Portico VT Installation Guide FOR HEARTLAND MERCHANT USERS JULY 2015 V2.9 Notice THE INFORMATION CONTAINED HEREIN IS PROVIDED TO RECIPIENT "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING

More information

User Guide Mobile Point-of-Sale (mpos), Version 2.0

User Guide Mobile Point-of-Sale (mpos), Version 2.0 User Guide Mobile Point-of-Sale (mpos), Version 2.0 Contents Overview... 1 Features... 1 Getting Started... 2 Login... 3 First Time Login/Password Reset... 3 Setting Security Questions... 4 Password Expiring...

More information

SAM4S Receipt Printer JPOS Driver. Mac OS X Installation Manual

SAM4S Receipt Printer JPOS Driver. Mac OS X Installation Manual SAM4S Receipt Printer JPOS Driver Mac OS X Contents Table of Contents Table of Contents... 2 1. Introduction... 3 2. Overview... 3 3. Prerequisite... 3 4. Extracting files using GUI... 6 5. Installation

More information

U s e r s g U i d e 1

U s e r s g U i d e 1 User s guide 1 Contents 2 Welcome 3 User Service Activation 4 Introduction 4 Purpose 5 Key Features 6 Activation 8 Using the System 8 Login 9 Credit Sale 10 For Swipe Capable Devices 10 For Manual Entry

More information

Portico VT. User Guide FOR HEARTLAND MERCHANT USERS APRIL 2015 V2.8

Portico VT. User Guide FOR HEARTLAND MERCHANT USERS APRIL 2015 V2.8 Portico VT User Guide FOR HEARTLAND MERCHANT USERS APRIL 2015 V2.8 Notice THE INFORMATION CONTAINED HEREIN IS PROVIDED TO RECIPIENT "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT

More information

Setup for X-Charge XpressLink in Regit POS

Setup for X-Charge XpressLink in Regit POS Setup for X-Charge XpressLink in Regit POS After installing X-Charge XpressLink: 1 - Open Regit Office 2 - Select Setup off the top line menu 3 - Select Charge Card Setup off the drop down menu 4 - Select

More information

Online Mobile Swipe Training

Online Mobile Swipe Training Online Mobile Swipe Training Agenda Welcome OMS Summary App Review, Installation, Testing OMS Activity Setup Refunds OSM Sales Report Deposit Info and SFO (if applicable) FAQs Support Desk, Newsletters,

More information

PC SETUP GUIDE Windows 7 + MicroSale

PC SETUP GUIDE Windows 7 + MicroSale PC SETUP GUIDE Windows 7 + MicroSale TABLE OF CONTENTS Windows 7 Setup guide... 3 Configuring the default administrator account... 3 Configuring additional accounts... 3 Dealer Account... 3 End User Account...

More information

Payment Integration Setup

Payment Integration Setup Payment Integration Setup The following is a step by step instructions for the setup of Edge / Moneris payment integration. 1. Ensure you have received your Ingenico IPP320 Pinpad(s) and any documentation

More information

Installation & Setup Guide. Version 1.0

Installation & Setup Guide. Version 1.0 Installation & Setup Guide Version 1.0 EL8040-02 This manual contains reference information about software products from Epicor. The software described in this manual and the manual itself are furnished

More information

NETePay XML. Installation & Configuration Guide. For Moneris (Public) Version 3.00

NETePay XML. Installation & Configuration Guide. For Moneris (Public) Version 3.00 NETePay XML Installation & Configuration Guide Version 3.00 For Moneris (Public) NETePay XML Installation & Configuration Guide Copyright 2005 Datacap Systems Inc. All rights reserved. This manual and

More information

Sage Mobile Payments User's Guide

Sage Mobile Payments User's Guide Sage Mobile Payments User's Guide Last Modified: 8/4/2014 Contents 1 Activating Sage Mobile Payments 2 Using the System 2 Login 2 Multi user Login 2 First-time Login 3 Default Settings 3 Retrieving Your

More information

User Guide. mpos Readers RP350x & RP457c Mobile Payment Acceptance User Guide for Android

User Guide. mpos Readers RP350x & RP457c Mobile Payment Acceptance User Guide for Android mpos Readers RP350x & RP457c Mobile Payment Acceptance User Guide for Android Disclosure Statements Confidential Notice The information contained herein is the property of Total System Services, Inc. (TSYS

More information

PAYware Mobile User Guide

PAYware Mobile User Guide Version 1.002 PAYware Mobile User Guide - 1 - Copyright 2010. VeriFone, Inc. All rights reserved. Notice Copyright March 2010, VeriFone Inc. All rights reserved. VeriFone, the VeriFone logo, PAYware, PAYware

More information

App user guide. October 2018

App user guide. October 2018 App user guide 1 Table of Contents Starter/Ranger functionality Creating an order Splitting an order Combining orders Adding a customer, notes and number of guests to an order Applying a special Deleting

More information

Hardware Install Guide

Hardware Install Guide Hardware Install Guide (11/17) For more information and assistance: Web: moneris.com/support-paydproplus-mobile Toll-free: 1-855-423-PAYD (7293) Record your Moneris merchant ID here: Contents Introduction...

More information

Virtual Terminal. Velocity Virtual Terminal

Virtual Terminal. Velocity Virtual Terminal Virtual Terminal Velocity Virtual Terminal VT account setup Accessing your VT account https://portal.nabcommerce.com Password Reset From the login page click Forgot password Enter your user name If the

More information

Installation and Setup for the Cayan Genius PIN Pad Device

Installation and Setup for the Cayan Genius PIN Pad Device Installation and Setup for the Cayan Genius PIN Pad Device Hardware: Cayan Genius/ PIN Pad device (purchase from Cayan) Keystroke Software: Keystroke POS v8.00 Build 35 or later (07/1/16) Description of

More information

PAX S300 EMV Certified PINpad with Heartland Payment Processing

PAX S300 EMV Certified PINpad with Heartland Payment Processing One Blue Hill Plaza, 16 th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 PAX S300 EMV Certified PINpad with Heartland Payment Processing

More information

Broad POS & PAX S80 Updated: 8/25/2016. PAX S80 Manual - 1

Broad POS & PAX S80 Updated: 8/25/2016. PAX S80 Manual - 1 Broad POS & PAX S80 Updated: 8/25/2016 PAX S80 Manual - 1 PAX S80 Manual - 2 Main Overview 1. Go to https://secure.broadpos.com/index.jsp 2. Login using ID & PW ID: PPSCS PW: Card123456789 3. After login,

More information

Wells Fargo Merchant Services. Wells Fargo Mobile Merchant User Guide for Apple ipad Version 3.2

Wells Fargo Merchant Services. Wells Fargo Mobile Merchant User Guide for Apple ipad Version 3.2 Wells Fargo Merchant Services Wells Fargo Mobile Merchant User Guide for Apple ipad Version 3.2 Table of Contents Overview...3 Key Features...3 Download Wells Fargo...4 Mobile Merchant...4 Demo Mode...4

More information

Created April Click the Windows Start button and navigate Programs > StarMicronics > Star TSP100 > TSP100 Configuration Utility

Created April Click the Windows Start button and navigate Programs > StarMicronics > Star TSP100 > TSP100 Configuration Utility Page1 Created April 2009 This application note shows how to set up Star single-station printers for receipt printing from InfoTouch Store Keeper POS Software. While this application note was written using

More information

WebPrint Quick Start User Guide

WebPrint Quick Start User Guide WebPrint Quick Start User Guide Getting Started Accessing Print Center Navigate your Web browser to Print Center Log in page. If you do not have an acocunt, you will need to create a new User account.

More information

SETTING UP AND TROUBLESHOOTING A CLOVER DEVICE FOR SPECTRUM

SETTING UP AND TROUBLESHOOTING A CLOVER DEVICE FOR SPECTRUM SETTING UP AND TROUBLESHOOTING A CLOVER DEVICE FOR SPECTRUM This document will guide you through the steps to configure a Clover Device to work with Spectrum. If you have any questions, please contact

More information

Download and Installation Instructions. Java JDK Software for Windows

Download and Installation Instructions. Java JDK Software for Windows Download and Installation Instructions for Java JDK Software for Windows Updated October, 2017 The CompuScholar Java Programming and Android Programming courses use the Java Development Kit (JDK) software.

More information

Fanfare Gift Card Application

Fanfare Gift Card Application Quick Reference Guide Fanfare Gift Card Application Verifone Evolution Series 2017 Elavon Inc. Elavon is a registered trademark in the United States and other countries. This document is prepared by Elavon

More information

MobileMerchant App Guide. United Kingdom Ireland

MobileMerchant App Guide. United Kingdom Ireland MobileMerchant App Guide United Kingdom Ireland Contents 1 Welcome to MobileMerchant from Elavon 3 1.1 How does it work? 3 1.2 What do I need? 3 1.3 How to get in touch 3 2 Datecs BluePad-50 PIN Pad 4

More information

MERCHANT MANUAL. Direct Connect Copyright 2016, All Rights Reserved.

MERCHANT MANUAL. Direct Connect Copyright 2016, All Rights Reserved. MERCHANT MANUAL Direct Connect Copyright 2016, All Rights Reserved www.directconnectps.com Table of Contents Overview... 5 The Gateway... 6 Logon as a Merchant... 7 Adding a New User... 11 Finding and

More information

A quick guide to installing the SpesCoin Wallet for Windows and MacOS users SPESCOIN WALLET. Installation Guide

A quick guide to installing the SpesCoin Wallet for Windows and MacOS users SPESCOIN WALLET. Installation Guide A quick guide to installing the SpesCoin Wallet for Windows and MacOS users SPESCOIN WALLET Installation Guide HOW TO INSTALL THE SPESCOIN GUI WALLET SYSTEM REQUIREMENT: Ensure you have Java Runtime Environment

More information

ALPHA POS S ERVICES. Hospitality POS Quick Reference Guide

ALPHA POS S ERVICES. Hospitality POS Quick Reference Guide ALPHA POS S ERVICES Hospitality POS Quick Reference Guide Table of Contents Opening Day Procedures...................... Page 3 Staff Operations........................... Page 3 Settling Transactions.........................

More information

New Cash Register System Quick Setup Guide. Version: XP1.0

New Cash Register System Quick Setup Guide. Version: XP1.0 New Cash Register System Quick Setup Guide Version: XP1.0 Contents Quick Step 1 - Upload New Cash Register System End User License... 1 Quick Step 2 Retrieve MAC IDs... 1 Quick Step 3 - Add License Key

More information

Secure Processing A Step by Step Guide

Secure Processing A Step by Step Guide Secure Processing A Step by Step Guide Protecting your theatre from fraudulent credit card activity requires two levels of security changes to your credit card account and additional hardware. This guide

More information

Table of Contents. Part I Introduction 2. Part II Options 3. Part III About Network Programming 5. Part IV Transactions 5.

Table of Contents. Part I Introduction 2. Part II Options 3. Part III About Network Programming 5. Part IV Transactions 5. Contents I Table of Contents Foreword 0 Part I Introduction 2 1 NETePay... 2 2 Options Vs Network... Programming 2 Part II Options 3 1 Settings 2 Servers 3 Draft 4 Printers 5 Pin Pad... 3... 3... 3...

More information

RMS-TD Bridge User s and Setup Guide Version 2.9.3

RMS-TD Bridge User s and Setup Guide Version 2.9.3 RMS-TD Bridge User s and Setup Guide Version 2.9.3 RMS-TD Bridge User s and Setup Guide v2.9.3 1 of 59 Table of Contents RMS-TD Bridge User s Guide... 4 Debit Cards... 5 Debit Cards: Standard Transactions...

More information

ANZ FASTPAY USER GUIDE

ANZ FASTPAY USER GUIDE ANZ FASTPAY USER GUIDE WELCOME TO YOUR ANZ FASTPAY USER GUIDE CONTENTS What you need to set up ANZ FastPay 2 What s in your ANZ FastPay box? 2 Where else to find help and information 3 Get to know your

More information

Getting Started with Android Development Zebra Android Link-OS SDK Android Studio

Getting Started with Android Development Zebra Android Link-OS SDK Android Studio Getting Started with Android Development Zebra Android Link-OS SDK Android Studio Overview This Application Note describes the end-to-end process of designing, packaging, deploying and running an Android

More information

PC Setup Instructions for MicroSale with Windows 10

PC Setup Instructions for MicroSale with Windows 10 Location Name PC Setup Instructions for MicroSale with Windows 10 1. Create Windows user accounts and set auto-logon to Windows 1.1 Create and configure Windows user accounts Click Start Run and type:

More information

To login to the Virtual Terminal, click on the link in your Welcome to PPI , enter your user ID and password and click OK.

To login to the Virtual Terminal, click on the link in your Welcome to PPI  , enter your user ID and password and click OK. Welcome to the PPI PayMover Virtual Terminal Training. The Virtual Terminal allows you to process real-time credit card transactions without a standalone hardware terminal. You are able to process credit

More information

MERCHANT MANUAL. Direct Connect Merchant Services LLC Copyright 2016, All Rights Reserved Merchant Manual v 1.

MERCHANT MANUAL. Direct Connect Merchant Services LLC  Copyright 2016, All Rights Reserved Merchant Manual v 1. MERCHANT MANUAL Direct Connect Merchant Services LLC www.directconnectps.com Copyright 2016, All Rights Reserved Merchant Manual 2016.10.06 v 1.doc Table of Contents Overview... 5 The Gateway... 6 Logon

More information

VX 520 Quick Reference Guide v1.0

VX 520 Quick Reference Guide v1.0 VX 520 Quick Reference Guide v1.0 Howdy, Welcome to Forte! This is your VX 520 Quick Reference Guide, a helpful and handy document that can walk you through the easy setup and common operations of your

More information

Retail Application. Quick Reference Guide. VeriFone Omni 3700 & Vx Series

Retail Application. Quick Reference Guide. VeriFone Omni 3700 & Vx Series Retail Application Quick Reference Guide VeriFone Omni 3700 & Vx Series VeriFone Omni 3700 & Vx Series Credit Sale > Swipe customer card > Select [CREDIT] > Input last 4 digits of account # and press Debit

More information

Epicor Tablet Point of Sale Installation and Setup Guide

Epicor Tablet Point of Sale Installation and Setup Guide Epicor Tablet Point of Sale Installation and Setup Guide Version 2.0 EL8040-03 10/24/2016 i Epicor Tablet Point of Sale Installation and Setup Guide This manual contains reference information about software

More information

10 Steps to Getting Started with Restaurant Pro Express

10 Steps to Getting Started with Restaurant Pro Express One Blue Hill Plaza, 16th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 10 Steps to Getting Started with Restaurant Pro Express Your

More information

Merchant Dashboard User Guide

Merchant Dashboard User Guide Merchant Dashboard User Guide February 10, 2015 Contents Dashboard... 3 Transactions... 5 Items... 7 Users... 9 Reports... 10 Account Settings... 11 2 Dashboard On the Dashboard page, you can get summaries

More information

VISIT:

VISIT: Welcome TO VISIT: http://www.touchbistro.com/onebox Please use this page to record important details about TouchBistro and your hardware. Notes: Wi-Fi Name: AirPort Name: AirPort Password: Thermal Printer

More information

Printing wirelessly from your own device at KDL branches. Creating an account as a first time user

Printing wirelessly from your own device at KDL branches. Creating an account as a first time user Printing wirelessly from your own device at KDL branches Creating an account as a first time user 1. Go to the SmartALEC portal through any online browser (ie, Chrome, Safari, Edge, Opera) by going to

More information

Oracle Payment Interface Oracle Hospitality Simphony OGDH Installation Guide Release 6.2 E January 2018

Oracle Payment Interface Oracle Hospitality Simphony OGDH Installation Guide Release 6.2 E January 2018 Oracle Payment Interface Oracle Hospitality Simphony OGDH Installation Guide Release 6.2 E92149-01 January 2018 Copyright 2010, 2018, Oracle and/or its affiliates. All rights reserved. This software and

More information

VeriFone Vx570 Fact Sheet

VeriFone Vx570 Fact Sheet Original Creation Date: May 24, 2006 Revision Date: April 23, 2008 Revision Number: 2.0 Distribution/Publish Date: April 23, 2008 VeriFone Vx570 Fact Sheet General Information Beta Release : June, 2006

More information

Vantiv Integrated Payments

Vantiv Integrated Payments Vantiv Integrated Payments Installation Best Practices 11/10/2017 www.vantiv.com Contents Overview... 2 Installation Best Practices... 2 1. Recommended tripos Direct Installation Options... 2 2. Configuration

More information

lyndaclassroom Getting Started Guide

lyndaclassroom Getting Started Guide lyndaclassroom Getting Started Guide This document explains Why lyndaclassroom might be right for you and your students How to register as an approved educator with lynda.com How to set up and submit your

More information

lyndaclassroom Getting Started Guide

lyndaclassroom Getting Started Guide lyndaclassroom Getting Started Guide This document explains Why lyndaclassroom might be right for you and your students How to register as an approved educator with lynda.com How to set up and submit your

More information

5.213 Release Notes. Version

5.213 Release Notes. Version 5.213 Release Notes Version 08-400-002.02 Table of Contents Build 1030 1 What s New in OneTouch Suite 5.213 Build 1030 AUClient Enhanced application to only accept incoming connections that connect with

More information

Configuring and Personalizing Your Receipts

Configuring and Personalizing Your Receipts One Blue Hill Plaza, 16 th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Configuring and Personalizing Your Receipts CRE/RPE is very

More information

Card Reader User Guide

Card Reader User Guide Card Reader User Guide 1 MYOB PayDirect User Guide Getting started in a few easy steps MYOB PayDirect turns your smartphone into a mobile payments terminal, so you can get paid on the spot anywhere, anytime.

More information

Using the Telstra T-Suite Management Console. Customer Administrator s Reference Manual

Using the Telstra T-Suite Management Console. Customer Administrator s Reference Manual Using the Telstra T-Suite Management Console Customer Administrator s Reference Manual June 2011 Registering With TMC Notice Pivot Path is a registered trademark of Jamcracker, Inc. Registered trademark

More information

PS Suite EMR ASP Remote Access Setup Guide for Macintosh computers

PS Suite EMR ASP Remote Access Setup Guide for Macintosh computers PS Suite EMR ASP Remote Access Setup Guide for Macintosh computers MDQS-6-3639 Rev 4.0 Revised June 13, 2017. PS Suite EMR software and related products and services are owned by TELUS. PS Suite EMR and

More information

Start with MULTILINE MARCH 2015

Start with MULTILINE MARCH 2015 Start with MULTILINE MARCH 2015 Table of contents Welcome to Multiline... 2 MultiLine contains many opportunities to increase your efficiency... 2 Features to make your life easier:... 3 Terminology...

More information

Document Number D

Document Number D Document Number D998200252-10 DynaPro, DynaPro Mini, DynaPro Go Document Number D998200252-10 1 About This Document... 2 2 How to setup the DynaPro/Go/Mini Sample App with 32-bit Java JRE... 2 3 How to

More information

Ingenico ict 220 Set-Up Guide

Ingenico ict 220 Set-Up Guide The Ingenico ict 220 is an Ethernet based terminal with dial backup and PIN pad connectivity capability CONNECTING/INITIALIZING THE TERMINAL Turn over terminal and plug the various ends of the magic box

More information

Bidstation with Square Beta Program How to run a silent auction event using Bidstation and Square a beginner s guide

Bidstation with Square Beta Program How to run a silent auction event using Bidstation and Square a beginner s guide Introduction If you ve never run a silent auction before, this guide can be a helpful resource for envisioning and planning your event. It provides a general description of how to run a silent auction

More information

Authorize.Net Mobile Application

Authorize.Net Mobile Application Authorize.Net Mobile Application Version 3.6 for ios and Android User Guide September 2018 Authorize.Net Developer Support https://developer.authorize.net Authorize.Net LLC 082007 Ver.2.0 Authorize.Net

More information

epnplugin v Financial Software Payments Module for QuickBooks Sales Receipts

epnplugin v Financial Software Payments Module for QuickBooks Sales Receipts epnplugin v3.1.58 Financial Software Payments Module for QuickBooks Sales Receipts eprocessing Network LLC 7/2/2012 epnplugin 3 Sales Receipts Table of Contents OVERVIEW... 3 REQUIREMENTS & PREPARATIONS...

More information

Created February 2009

Created February 2009 Created February 2009 This application note shows how to configure the HSP7000 for Computerworks of Chicago Inc s Booklog software to print receipts and endorse checks. HSP7000 Connection Interfaces Supported:

More information

Sterling Virtual Terminal. User Guide

Sterling Virtual Terminal. User Guide Sterling Virtual Terminal User Guide Version 3.1.00 August 2015 Chapter 1: Getting started Table of Contents USER GUIDE... 1 CHAPTER 1: GETTING STARTED... 5 SYSTEM REQUIREMENTS... 5 STERLING VIRTUAL TERMINAL

More information

PASSWORD / IP RECOVERY TOOL FOR DSC1000 CONTROLLER Mk1 (including embedded versions)

PASSWORD / IP RECOVERY TOOL FOR DSC1000 CONTROLLER Mk1 (including embedded versions) FOR DSC1000 CONTROLLER Mk1 (including embedded versions) www.unipowerco.com 2016 UNIPOWER LLC All Rights Reserved NORTH AMERICA 3900 Coral Ridge Drive, Coral Springs, Florida 33065, USA Tel: +1 954-346-2442

More information

Activating Gift Cards

Activating Gift Cards Activating or Reloading IT S YOUR CARD Gift Cards through IYC Sales in Lighthouse Transaction Manager While most gift cards are activated and loaded at a POS, it is possible to sell, reload, and activate

More information

Table of Contents. New PayPal Integration PayPal Integration Notify the customer via Printer s Plan Notify the customer via Paypal Receiving Payments

Table of Contents. New PayPal Integration PayPal Integration Notify the customer via Printer s Plan Notify the customer via Paypal Receiving Payments Printer s Plan 2019 What s New and Improved Page 1 Table of Contents Page New PayPal Integration PayPal Integration Notify the customer via Printer s Plan Notify the customer via Paypal Receiving Payments

More information

Posting Deposits on Furniture Orders

Posting Deposits on Furniture Orders Posting Deposits on Furniture Orders Updated April 2016 Contents Introduction...3 Understanding Prepay and A/R Deposits...3 Setting Up General Ledger Deposit Accounts...3 Entering the New G/L Accounts

More information

Verifone MX800 Series Pinpad Serial Installation

Verifone MX800 Series Pinpad Serial Installation One Blue Hill Plaza, 16 th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Verifone MX800 Series Pinpad Serial Installation Note: No drivers

More information

AFTER HOURS EMERGENCY POS SUPPORT ext 126 Press 4 when prompted

AFTER HOURS EMERGENCY POS SUPPORT ext 126 Press 4 when prompted AFTER HOURS EMERGENCY POS SUPPORT 519-442-3153 ext 126 Press 4 when prompted TEC REGISTER POS Operations Manual A complete guide to the operations of the point-of-sale (POS) unit. Calendar Club of Canada

More information

ing Reports and Forms. From CounterPoint

ing Reports and Forms. From CounterPoint Emailing Reports and Forms From CounterPoint Introduction Vickie Sheffield Retail Applications Team 4 years with Radiant Systems Objective & Overview Retailers of all sizes are expanding their use of email.

More information

Mango3 Motrex User Manual

Mango3 Motrex User Manual Mango3 Motrex User Manual Index 1. Scope... 1 2. Preparations... 1 3. First Step - Download new map to USB flash (on the PC)... 2 4. Second Step - Install new map (on the car)... 4 5. Third Step - Install

More information