- POSresult: Once your POS receives the payment transaction response, use this to advise us of the results.

Size: px
Start display at page:

Download "- POSresult: Once your POS receives the payment transaction response, use this to advise us of the results."

Transcription

1 To: Re: POS Providers Xpress-pay Mobile direct integration Thank you for your interest in Xpress-pay Mobile direct integration. You will be pleased to know the process is actually quite simple, requiring only three API calls to interact: - PostPOSbill: When the POS has a bill ready for the consumer to pay, use this API to post it to our database. Restaurants: In the event that the amount is updated, simply provide the new information in another post. We will recognize the duplication and update the bill. Mobile apps: Use this when the consumer has elected to Xpress-pay their bill and before navigating them to the Xpress-pay Mobile payment site. - POSpoll: The POS uses this method to poll Xpress-pay every few seconds to see if we have payments information pending. If we do, our response will include credit/debit card credentials needed for the POS to submit the payment. You should code to suspend polling if the POS has no open checks. - POSresult: Once your POS receives the payment transaction response, use this to advise us of the results. When your prototypes are prepared, we will assign a team member to assist with testing. This way, you will not need to become fully acquainted with the public-facing Xpress-pay Mobile components and use. After integrating, mobile apps simply display an Xpress-pay button. Restaurant systems can display a dynamic QR code on the printed check, or we can provide a static QR code for the establishment to include in the check folio. In the latter case, the patron simply enters the check number after scanning the QR code. Dynamic QR s provide additional convenience to patrons and add value to your product, while omitting them simplifies your initial effort. Our Technical Support Department remains available to assist you during your entire effort. For questions or support, please support@systemseast.com or call us at the number below. Thank you, James L. Buttino President

2 Developer Details for Direct Xpress-pay Mobile POS Integration The service page is located at both our development site ( and our production site ( You can use either as we have a demo merchant at each one. We recommend using only our live site as this will eliminate at least some of the otherwise redundant post-migration testing. Your involvement with integration will involve only three of the available methods. Since all API calls are via https and initiated from the merchant side, all transmissions are automatically encrypted and no special protocols or port-forwarding is required. Examples and parameter definitions follow this page. We have included safeguards and fault tolerance into the service as well: - For restaurants and hospitality, we understand that a person could scan their QR to retrieve their bill, and then add to it with a supplemental order. Consequently, when the patron actually submits their payment, we first verify that their bill payment amount (excluding tip) exactly matches the bill amount in our DB. If it does not match, they are immediately notified to start over. - When a payment is submitted, we write a record to a queue, where it awaits your poll. If you go offline and don t poll it, the record is marked as Expired in twenty-five seconds. The patron is then notified that the POS is not available. - When you poll us and we communicate payment information, we flag our queue record as Sent so we know you have it. Since it is possible that we may not receive a timely response from the POS, we will wait a maximum of twenty-five seconds prior to flagging the queue record as Sent/Expired. In such rare cases, the patron is then notified that the POS is not currently available. - Though we can adjust the timeout tolerance, you would do well to properly handle exceptions caused by an attempt to post a result to an expired queue record, though this would only occur if the time between passing payment credentials and receiving the pass/fail from you exceeds the timeout threshold. - Pending queue records are only transmitted once in response to a POSpoll. Consequently, when you receive payment information, you are encouraged to spawn your payment submission process separately and continue polling at your regular interval (asynchronous mode). Processing payments serially will elevate the likelihood of expirations. We look forward to working with you on the completion of this effort. Please contact us for additional information or clarification as needed.

3 Step one: Post your bill/check to our database Restaurants: When the POS prints a check destined for the table, post a copy of it in our database. If the check amount changes and the check is reprinted, repost the bill and we ll overwrite the old information with the new. When the patron initiates a transaction, we will retrieve the bill information and present the relevant components on their device. Mobile apps: When the patron elects to Xpress-pay their bill, post a copy of it in our database before redirecting them to Xpress-pay. Once they arrive, we will retrieve the bill information and present the relevant components on their device. - ibilltypepk: Required. The merchant ID we will assign to each establishment. For your integration project, use 1454 if you are using our development site and 2878 for the demo merchant at our live site. - Locator1: Required. The POS check number. - Locator2: Optional. The table ID. - Locator3: Optional. The text- or address of the person to be notified of payment. - SecurityCode: Required. The merchant s Xpress-pay API password (nydemo for the demo merchant). - Billamount: Required. The amount of the check. - Otheramount: Required (enter 0 if zero). The service charge we are to enforce. Response format: [Code],[ErrorSubcode],[ResponseText],0,[InternalBillID] Code 1: The check posted or updated successfully Code 9: Failure Sample responses: New bill, accepted: Existing bill, updated: Declined: 1,0,Posted,0, ,0,Updated,0, ,21,Configuration error,0

4 During the payment of any bill that permits a gratuity or mandatory service charge, the check amount (and separate mandatory service charge, if any) will be presented to the patron. The gratuity may be adjusted with +/- buttons or by entering an amount. The patron then continues within Xpress-pay Mobile to enter or select a card. The locator fields above are to be used as defined for restaurants, but for mobile apps, locators 2 through 5 may be used as you deem appropriate for any required information exchange. (continued)

5 Step two: Poll for payment information Once the patron has provided their payment information or selected a card stored in their Xpress-pay digital wallet, they tap the payment button. Xpress-pay Mobile then creates a queue record and awaits a result. It is expected that you will poll for payment information every few seconds. You can help us reduce traffic by suspending polling if you have no open checks. If the poll returns a 0, we have no payment activity queued. If we return a 1, the response will include the credit or debit card credentials, and we will mark the queued record as Sent so it will not be reported to you again. You should then spawn a separate function to submit the transaction through the existing merchant account and continue polling in case there are any more payments pending. Note: Upon receiving payment credentials, you will have twenty-five seconds to advise us of the result, otherwise we will assume there has been a communication error and advise the consumer of the failure. Consequently, we strongly recommend that you process payments asynchronously. - BillTypeID: The merchant ID we will assign. For your integration project, use 1454 if you are using our development site and 2878 if you are using the demo merchant at our live site. - Password: The merchant s API password (nydemo for the demo merchant on either site) Response format: [Code],[POScheckID],[QueueID],[CardName],[CardAddress],[CardCity],[CardState],[CardZip],[CardNumber], [ExpMonth],[ExpYear],[CVV],[BillPaymentAmount],[GratuityAmount] Code 0: No payments pending Code 1: Payment string follows (see example) Code 9: Error; either a bad BillTypeId or the merchant API password is incorrect Sample response: 1,55902,66,John Smith,12 Church St,Syracuse,NY,13202, ,8,2016,123,10.00,1.00 (continued)

6 Step three: Advise us of the results Once you have results from your payment submission, we need to know so we can advise the patron. - BillTypeID: The merchant ID we will assign. For your integration project, use 1454 if you are using our development site and 2878 if you are using the demo merchant at our live site. - QueueID: The queue record number provided to you in the POSpoll - Result: Approved or Declined in text form (no quotes) - ApprovalCode: Any code to associate the approval with your system - TransactionCode: The transaction ID assigned by the merchant provider - Password: The merchant s API password (nydemo for the demo merchant on either site) Response format: [Code],[ErrorSubcode],[ResultText] Code 1: Success Code [other]: Rejected. The reason is provided in the errorsubcode and the result text Sample responses: Accepted: 1,Result saved Declined 9,2,Queue record is already Approved Edge condition warning: It is possible that your transaction was successful but the queue record expired because your POSresult was submitted outside the twenty-five second response window. In this case, we will reject your POSresult, having already informed the patron that the POS did not respond, though their card would have actually been charged. Though this should never actually occur, you may wish to code accordingly, allowing the charge to be reversed.

Credit Card Processing Guide

Credit Card Processing Guide Credit Card Processing Guide Detailed Overview of The Reports in The Envision Software I Credit Card Processing Within Envision Cloud Table of Contents Part I Introduction 1 Part II Processing On A Computer

More information

Citi Pay App Frequently Asked Questions

Citi Pay App Frequently Asked Questions Citi Pay App Frequently Asked Questions 1. What is Citi Pay? Citi Pay provides the convenience of making secure, in-store payments using your compatible Android mobile phone. This is an optional feature

More information

Payroll Integration User s Guide - Abbreviated Version

Payroll Integration User s Guide - Abbreviated Version Payroll Integration User s Guide - Abbreviated Version This guide includes general instructions for the use of Employee Navigator s Payroll Integration product both for the client and for our partners.

More information

Version /2/2017. Offline User Guide

Version /2/2017. Offline User Guide Version 3.3 11/2/2017 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on

More information

Your Gateway to Electronic Payments & Financial Services Getting Started Guide - English

Your Gateway to Electronic Payments & Financial Services Getting Started Guide - English Your Gateway to Electronic Payments & Financial Services Getting Started Guide - English Contents Introduction Register online for noqodi How to fund? How to execute Transactions and Payments? Conclusion

More information

QUICK REFERENCE GUIDE Online POS Terminal. Thank you for choosing the Online POS Terminal. Chase is pleased to announce an

QUICK REFERENCE GUIDE Online POS Terminal. Thank you for choosing the Online POS Terminal. Chase is pleased to announce an QUICK REFERENCE GUIDE ONLINE POS TERMINAL 1 ipp 320 PIN Pad QUICK REFERENCE GUIDE Online POS Terminal Thank you for choosing the Online POS Terminal. Chase is pleased to announce an enhanced version of

More information

1 User Guide for the Pay-at-table Application. First Data EFTPOS. User Guide. for the Pay-at-table application

1 User Guide for the Pay-at-table Application. First Data EFTPOS. User Guide. for the Pay-at-table application 1 User Guide for the Pay-at-table Application First Data EFTPOS User Guide for the Pay-at-table application 2 User Guide for the Pay-at-table Application What are you looking for? Introduction 03 About

More information

QUICK REFERENCE GUIDE Online POS Terminal. Thank you for choosing the Online POS Terminal. Chase is pleased to announce an

QUICK REFERENCE GUIDE Online POS Terminal. Thank you for choosing the Online POS Terminal. Chase is pleased to announce an QUICK REFERENCE GUIDE ONLINE POS TERMINAL 1 ipp 320 PIN Pad QUICK REFERENCE GUIDE Online POS Terminal Thank you for choosing the Online POS Terminal. Chase is pleased to announce an enhanced version of

More information

Quick Service Cashier Manual

Quick Service Cashier Manual Version: 01/01/2012 Table of Contents Getting Started 3 Post a Credit Card Transaction 8 System Time... 3 Approved 8 Connectivity Indicator Light. 3 Declined 8 Sign-in Pad 3 Credit Unavailable. 8 Clock

More information

Note: EPS features contained within these FAQs may not be applicable to all Payers.

Note: EPS features contained within these FAQs may not be applicable to all Payers. Note: EPS features contained within these FAQs may not be applicable to all Payers. General Questi ons 1) Overall explanation of what Electronic Payments and Statements is? Electronic Payments and Statements

More information

Delaying Count. Totaling the Register THEN

Delaying Count. Totaling the Register THEN Login 1. Select the POS icon. 2. Choose your name from the Name list. 3. Select Keyboard on Login screen. 4. Enter password in Password field. 5. Select Enter on Keyboard screen. Open for a Serving Period

More information

Welcome to XpressBillPay.com. Instructions for first time users

Welcome to XpressBillPay.com. Instructions for first time users Welcome to XpressBillPay.com Instructions for first time users You probably arrived here via a link from a company website. Perhaps you are here because you received a mailer with your bill informing you

More information

Siebel Order Management Guide Addendum for Financial Services. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013

Siebel Order Management Guide Addendum for Financial Services. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Siebel Order Management Guide Addendum for Financial Services Siebel Innovation Pack 2013 Version September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software and

More information

1. Merchant initiated transactions for merchant payments

1. Merchant initiated transactions for merchant payments Annexure I 1. Merchant initiated transactions for merchant payments The merchant initiated transactions for merchant payment is a two-step process: 1. Generate OTP before transaction 2. Make payment to

More information

TOKENIZATION OF A PHYSICAL DEBIT OR CREDIT CARD FOR PAYMENT

TOKENIZATION OF A PHYSICAL DEBIT OR CREDIT CARD FOR PAYMENT Technical Disclosure Commons Defensive Publications Series January 31, 2016 TOKENIZATION OF A PHYSICAL DEBIT OR CREDIT CARD FOR PAYMENT Ritcha Ranjan Follow this and additional works at: http://www.tdcommons.org/dpubs_series

More information

Frequently Asked Questions (FAQs):

Frequently Asked Questions (FAQs): Frequently Asked Questions (FAQs): Product Features: Q1. What is SBI Buddy Merchant App? SBI Buddy Merchant App is State Bank of India s Mobile Wallet for Merchants and Sub-Merchants to accept/collect

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of GL Accounts... 5 Configuration

More information

NetSuite OpenAir Mobile for iphone User Guide Version 2.2

NetSuite OpenAir Mobile for iphone User Guide Version 2.2 NetSuite OpenAir Mobile for iphone User Guide Version 2 General Notices Attributions NetSuite OpenAir includes functionality provided by HighCharts JS software, which is owned by and licensed through Highsoft

More information

How to use Mastercard's PDQs with Comtrex

How to use Mastercard's PDQs with Comtrex This is a quick guide how use the Mastercard Datacash PDQs with Comtrex. There are 3 types of transactions you can process, Sales Card holder present, Sale Card holder Not Present and a Refund Card holder

More information

Maintenance and Service Interruption Alerts (archived)

Maintenance and Service Interruption Alerts (archived) Maintenance and Service Interruption Alerts (archived) 6/1/2018 12:00 pm EDT Paya has turned off communication via any protocol below TLS 1.2 as part of PCI Compliance At 12 pm EDT on Friday, June 1st,

More information

batch Payment Return Reversal

batch Payment Return Reversal Customer Order batch Retail Transaction End of day Cancel Void Return Payment Return Payment System Acquirer, Loyalty Reversal Check out payment post void POS/Terminal Payment Processor Card Issuer Request

More information

tmw Prepaid Card For #better_tomorrow SECURED BY POWERED BY PCI COMPLIANT

tmw Prepaid Card For #better_tomorrow SECURED BY POWERED BY PCI COMPLIANT tmw Prepaid Card For #better_tomorrow 1 SECURED BY POWERED BY PCI COMPLIANT Meet the tmw Prepaid Card Powered by MasterCard. Issued with Federal Bank Chip and Pin Secured Card Accepted Everywhere: Accepted

More information

Mobile for iphone User Guide

Mobile for iphone User Guide Version 2.5 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure

More information

Poynt Lodging App. Merchant Guide - Version 2.0

Poynt Lodging App. Merchant Guide - Version 2.0 Poynt Lodging App Merchant Guide - Version 2.0 1 Poynt Co 490 South California Ave, Suite 200 Palo Alto, CA 94306 https://poynt.com COPYRIGHT 2017 BY POYNT CO This publication is proprietary to Poynt Co

More information

OceanPay. OceanPay Visa Prepaid Card. OceanPay Wire Services. Frequently Asked Questions

OceanPay. OceanPay Visa Prepaid Card. OceanPay Wire Services. Frequently Asked Questions OceanPay a direct deposit payroll card Your wages are deposited directly to your OceanPay Card, which can be used worldwide at over 20 million locations everywhere Visa debit cards are accepted. to pay

More information

Before continuing it is important the reader understands the key differences between Mobipaid and other forms of mobile payments :

Before continuing it is important the reader understands the key differences between Mobipaid and other forms of mobile payments : Mobipaid - User Guide Introduction to Mobipaid Welcome to Mobipaid where taking card payments from customers has never been easier. For the first time, any Business, Sole Trader, Non-profit Organization,

More information

How to Guide. &FAQ s

How to Guide. &FAQ s How to Guide &FAQ s About Rewards Being part of the Landcare family means you can access hundreds of discounted offers from leading Australian retailers. Take up these offers and you'll also build rewards

More information

Greater Giving Terminal User Start Guide

Greater Giving Terminal User Start Guide Greater Giving Terminal User Start Guide Card Holder Data Security (PCI) The Payment Card Industry (PCI) Data Security Standards were developed by the major credit card companies as a guideline to help

More information

Terminal Guide VeriFone VX520 & VX820 Duet Retail Restaurant

Terminal Guide VeriFone VX520 & VX820 Duet Retail Restaurant Terminal Guide VeriFone VX520 & VX820 Duet Retail Restaurant This Quick Reference Guide will guide you through understanding your terminal s functionality, and will help you with troubleshooting your payment

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS MAYBANK QRPAY FREQUENTLY ASKED QUESTIONS 1. What is Maybank QRPay? Maybank QRPay is a cashless payment solution that enables customers to make payments to merchants using a unique two-dimensional quick-response

More information

City National Book2Bank User Guide MARCH 2018

City National Book2Bank User Guide MARCH 2018 City National Book2Bank User Guide MARCH 2018 Copyright 2018 City National Bank City National Bank is a subsidiary of Royal Bank of Canada Page 2 Contents BOOK2BANK OVERVIEW... 4 What is Book2Bank? 4 What

More information

OSP / QuickBooks Web Connector Setup

OSP / QuickBooks Web Connector Setup OSP / QuickBooks Web Connector Setup Overview The OrderStream Pro Business Manager can be integrated in real time with QuickBooks Financial Software. Key data flows automatically between applications as

More information

Payroll Integration User s Guide

Payroll Integration User s Guide Payroll Integration User s Guide This guide includes general instructions for the use of Employee Navigator s Payroll Integration product both for the client and for our partners. It is intended for use

More information

Outline. 01 Terminal Overview: Page The Basics: Page Transactions: Page Settlements: Page Poynt.

Outline. 01 Terminal Overview: Page The Basics: Page Transactions: Page Settlements: Page Poynt. Merchant Overview 1 Outline 01 Terminal Overview: Page 3 02 The Basics: Page 6 03 Transactions: Page 13 04 Settlements: Page 29 05 Poynt.net HQ: Page 34 2 01 Terminal Overview 3 Spec Sheet: Merchant Facing

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of a ConnectWise Manage Login... 4 Configuration of GL Accounts...

More information

On-Demand Solution Planning Guide

On-Demand Solution Planning Guide On-Demand Solution Planning Guide Powering On-Demand Solutions www.growthclick.com hello@growthclick.com Copyright 2019 GrowthClick Inc. All Rights Reserved. 1 3 Steps to Planning an On-Demand Solution

More information

Zebra s Repair Order Portal for Partners COURSE CODE: RPE01

Zebra s Repair Order Portal for Partners COURSE CODE: RPE01 Zebra s Repair Order Portal for Partners COURSE CODE: RPE01 April 2017 Introduction Welcome to the Zebra s Repair Order Portal for Partners course. This course explains how to navigate the Repair Order

More information

Contents OVERVIEW... 3 CONFIGURATION... 4

Contents OVERVIEW... 3 CONFIGURATION... 4 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of GL Accounts... 5 Configuration

More information

Setup & Usage - CanadaPost for Small Business App

Setup & Usage - CanadaPost for Small Business App Setup & Usage - CanadaPost for Small Business App Setup 1. Assign User App Permissions by using the search function and typing users in the search field. 2. Drill into user. 3. Add WS-CNDPOST permission

More information

Ariba Network Online Invoice Guide

Ariba Network Online Invoice Guide Ariba Network Online Invoice Guide Introduction Regions Financial Corporation Specifications Your Ariba Network Account Invoices Accessing Your Account Account Navigation Account Configuration Settlement/Remit-To

More information

ArchiOffice QuickBooks Integration

ArchiOffice QuickBooks Integration Office and Project Management Solution ArchiOffice QuickBooks Integration Integration Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505 Support: (310) 602-4030 Sales: (888) 245-5669

More information

Is Apple Pay free? Yes. Be aware that message and data rates may apply, depending on your data plan.

Is Apple Pay free? Yes. Be aware that message and data rates may apply, depending on your data plan. What is Apple Pay? Apple Pay allows you to pay for your purchases with your iphone 6 or iphone 6 Plus by holding your phone near a contactless reader at participating merchants. You can also use your phone,

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of GL Accounts... 5 Configuration

More information

Inventory. Modules. Inventory

Inventory. Modules. Inventory Inventory Inventory Modules Stock Checkout Checkout Requests Material Disposition Shipping Memo Physical Inventory Property Management Property Property Inventory Property Log Receiving Multi-Step Receiving

More information

Terms and Conditions for using BEA Credit Card in Digital Wallet

Terms and Conditions for using BEA Credit Card in Digital Wallet Terms and Conditions for using BEA Credit Card in Digital Wallet These Terms and Conditions for using your BEA Credit Card in Digital Wallet ("Terms and Conditions") apply when you choose to add a BEA

More information

Performing End of Day

Performing End of Day 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 Performing End of Day In order to close out a day at your store

More information

February 2017 Merchant Overview

February 2017 Merchant Overview February 2017 Merchant Overview 1 Outline 01 Poynt 02 Terminal Overview 03 Product Demo 04 Poynt.net HQ 2 01 Poynt 3 Hi there. We re Poynt. At Poynt we think all merchants (and merchant service providers)

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of GL Accounts... 5 Configuration

More information

Content Page. DHL MyBill Guide. DHL MyBill. DHL MYBILL INTRODUCTION 01 Content Page 02 What does DHL MyBill offer?

Content Page. DHL MyBill Guide. DHL MyBill. DHL MYBILL INTRODUCTION 01 Content Page 02 What does DHL MyBill offer? 01 Guide Content Page DHL MYBILL INTRODUCTION 01 Content Page 02 What does offer? REGISTRATION AND ACCESS 03 Registration 04 Registration (continued) MAIN TABS 05 Dashboard 06 Archive, Reports & Download

More information

Stellarise Connector for Dynamics 365 and Xero. User Guide

Stellarise Connector for Dynamics 365 and Xero. User Guide Stellarise Connector for Dynamics 365 and Xero User Guide V3 What is Stellarise Connector for Dynamics 365 and Xero?... 3 What is new?... 4 How do you setup Stellarise Connector for Dynamics 365 and Xero?...

More information

Getting started with BPMe - FAQ

Getting started with BPMe - FAQ Getting started with BPMe - FAQ 1 Contents Eligibility 3 Setting up BPMe 4 Payment methods 7 Pay in Car 8 Other Purchases 11 General 12 Security 13 Support for Technical Issues 14 Support 16 2 Eligibility

More information

Business Bill Pay To view our Business Bill Pay demo,

Business Bill Pay To view our Business Bill Pay demo, Business Bill Pay To view our Business Bill Pay demo, http://www.firstfd.com/2062/mirror/bus-bill-pay.htm QUICK START GUIDE TO FIRST FEDERAL S BUSINESS BILL PAY 1. Accessing Business Bill Pay After logging

More information

VeriFone VX QUICK REFERENCE GUIDE

VeriFone VX QUICK REFERENCE GUIDE QUICK REFERENCE GUIDE VeriFone VX This Quick Reference Guide will guide you through understanding your terminal s functionality and navigation, and will help you with troubleshooting. INDUSTRY Retail and

More information

Receiving and Invoice Approvals

Receiving and Invoice Approvals 1 Receiving and Invoice Approvals 2 Topics Receiving and Invoice Approval Requirements Receiving Thresholds Invoice Approval Thresholds Creating Quantity and Cost Receipts Approving an Invoice Mobile Functionality

More information

POS TICKETS. a project guide to rezku POS. Ticket List List View Tile View Order Statuses. Opening Tickets Refunds Change Date Exit

POS TICKETS. a project guide to rezku POS. Ticket List List View Tile View Order Statuses. Opening Tickets Refunds Change Date Exit POS POS a project guide to rezku TICKETS Ticket List List View Tile View Order Statuses Opening Tickets Refunds Change Date Exit Copyright 2017 Guest Innovations, Inc. All Rights Reserved. Tickets The

More information

Sage 50 U.S. Edition. Direct Deposit Getting Started Guide

Sage 50 U.S. Edition. Direct Deposit Getting Started Guide Sage 50 U.S. Edition Direct Deposit Getting Started Guide This is a publication of Sage Software, Inc. 2017 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product

More information

Welcome to Customer Connect Training

Welcome to Customer Connect Training Welcome to Customer Connect Training Signing In to Customer Connect You will access Customer Connect through SMC s Extranet at the following link: http://smcext01.smcusa.com/extranet.nsf The link to Customer

More information

1z0-334.exam. https://www.gratisexam.com/ Oracle. 1z Oracle Financials Cloud: Payables 2016 Implementation Essentials. Version 1.

1z0-334.exam. https://www.gratisexam.com/ Oracle. 1z Oracle Financials Cloud: Payables 2016 Implementation Essentials. Version 1. 1z0-334.exam Number: 1z0-334 Passing Score: 800 Time Limit: 120 min File Version: 1.0 https://www.gratisexam.com/ Oracle 1z0-334 Oracle Financials Cloud: Payables 2016 Implementation Essentials Version

More information

Domestic Vendor Training Guide

Domestic Vendor Training Guide 2014 Domestic Vendor Training Guide Copyright 2013, PetEdge Inc. TABLE OF CONTENTS (click on any of the topics below to jump to that section) INTRODUCTION TO EZSUPPLIER & XCARRIER... 2 I. Getting Started...

More information

For ios users, requires ios 9.0 or later. For Android users, requires 4.4 or later. 4. Can I have more than 1 PayLah! wallet?

For ios users, requires ios 9.0 or later. For Android users, requires 4.4 or later. 4. Can I have more than 1 PayLah! wallet? Category/Group Question and Answer General Information 1. What is PayLah! DBS PayLah! is a personal mobile wallet which allows you to perform transactions such as funds transfer via a mobile number, scan

More information

Using the Commonwealth Bank EFTPOS terminal with QuickPOS

Using the Commonwealth Bank EFTPOS terminal with QuickPOS Q U I C K P O S S U P P L E M E N T Using the Commonwealth Bank EFTPOS terminal with QuickPOS This special supplement shows you how to set up and use QuickPOS with the Commonwealth Bank s EFTPOS terminal.

More information

FEATURES. Multiple Restaurant System is a restaurant food ordering and restaurant membership system.

FEATURES. Multiple Restaurant System is a restaurant food ordering and restaurant membership system. Sona Food Insight SonaFood Clone Scripts is a Restaurant App which is the fastest, simplest and most importantly smartest online food ordering app. It s a user-friendly & a real-time app which any user

More information

15/01/2014 Panasonic Parts Ordering User Guide

15/01/2014 Panasonic Parts Ordering User Guide 15/01/2014 Panasonic Parts Ordering User Guide Panasonic UK, a branch of Panasonic Marketing Europe GmbH 1 15/01/14 Table of Contents Welcome to the Spare Parts Ordering System Bulk Orders 3 Parts Deliveries

More information

Release Notice. Version Release Date: June 18, 2015

Release Notice. Version Release Date: June 18, 2015 Release Date: June 18, 2015 SedonaOffice 8401 Chagrin Blvd Suite 15-B 45185 Joy Road Chagrin Falls, OH 44023 Canton, MI 48187 440.247.5602 Contents About this Document... 5 Overview... 5 Application Enhancements/Improvements...

More information

November 26th, Hello,

November 26th, Hello, Hello, November 26th, 2013 I m Rob Banagale, co founder and CEO of Gliph. I m writing to appeal both Apple s rejection of version 1.85 of our ios application and Apple s request for changes to the existing

More information

3M Ariba Light Account Network Collaboration for Suppliers

3M Ariba Light Account Network Collaboration for Suppliers SAP Training Source To Pay 3M Ariba Light Account Network Collaboration for Suppliers External User Training Version: 1.0 Last Updated: 31-Aug-2017 3M Business Transformation & Information Technology Progress

More information

ONE BUSINESS - ONE APP USER MANUAL

ONE BUSINESS - ONE APP USER MANUAL ONE BUSINESS - ONE APP USER MANUAL 1 TABLE OF CONTENTS GETTING STARTED WITH SHOPBOX CREATE A PROFILE 4 CREATE A STORE 5 STARTING PAGE 5 HOW TO CREATE, EDIT AND DELETE CATEGORIES AND PRODUCTS CREATE CATEGORY

More information

Oracle Customer Data Synchronization Integration Pack for Oracle Utilities Customer Care and Billing and Siebel Energy E

Oracle Customer Data Synchronization Integration Pack for Oracle Utilities Customer Care and Billing and Siebel Energy E Oracle Customer Data Synchronization Integration Pack for Oracle Utilities Customer Care and Billing and Siebel Energy Implementation Guide Release 11.1 E50331-01 December 2013 Oracle Customer Data Synchronization

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Retail Bill Payments User Manual Release 18.2.0.0.0 Part No. E97823-01 June 2018 Retail Bill Payments User Manual June 2018 Oracle Financial Services Software Limited

More information

Pinless Transaction Clarifications

Pinless Transaction Clarifications Pinless Transaction Clarifications April, 2017 Agenda Definition Level Set Application Selection Overview and Scenario Explanation EMV No CVM PIN Bypass Debit Expansion Programs PINless POS Product Signature

More information

Merchant Operating Guide

Merchant Operating Guide Merchant Operating Guide Contents 1. Introduction to Your ANZ Royal Terminal... 1 2. Who to Call for Authorisations and Assistance... 3 3. Cards You Can Accept... 4 4. Credit Card Fraud Minimisation...

More information

ConnectWise-Sage 50 Accounts User Guide

ConnectWise-Sage 50 Accounts User Guide ConnectWiseSupport@mobiusworks.com www.mobiusworks.com ConnectWise-Sage 50 Accounts Version 3.0.0.7 September 11, 2015 Table of Contents Table of Contents... 2 INSTALLATION AND CONFIGURATION... 4 Introduction...

More information

NAB EFTPOS User Guide. for Countertop & Mobile Terminals

NAB EFTPOS User Guide. for Countertop & Mobile Terminals NAB EFTPOS User Guide for Countertop & Mobile Terminals YOUR NAB EFTPOS TERMINAL 2 NAB EFTPOS User Guide TABLE OF CONTENTS Getting to know your NAB EFTPOS Ingenico terminal 5 Contactless Tap & Go 8 Sale

More information

QuickBill for Dentrix

QuickBill for Dentrix QuickBill 3.3.7 for Dentrix USER S GUIDE www.dentrix.com/eservices 1-800-734-5561 2 PUBLICATION DATE November 2016 COPYRIGHT 1987-2016 Henry Schein, Inc. Dentrix, Henry Schein, and the S logo are registered

More information

Electronic Payments & Statements (EPS) Frequently Asked Questions (FAQs)

Electronic Payments & Statements (EPS) Frequently Asked Questions (FAQs) Electronic Payments & Statements (EPS) Frequently Asked Questions (FAQs) Note: EPS features contained within these FAQs may not be applicable to all Payers. General Questions 1. What is Electronic Payments

More information

Canada Post App - Frequently Asked Questions

Canada Post App - Frequently Asked Questions Canada Post App - Frequently Asked Questions What is the CanadaPost Solutions for Small Business? Please visit Solutions for Small Business for details. How do I obtain API keys for this application? You

More information

Dell E-Commerce guide for Skyward Users 1

Dell E-Commerce guide for Skyward Users 1 Dell E-Commerce guide for Skyward Users 1 This document contains instructions on how to use the e-commerce application running on Skyward s Business Suite to purchase from your Dell Premier Page. E-Commerce

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.4 CONTACT 4576 Yonge Street, Suite 200, Toronto, ON M2N 6N4, Canada DOWNLOAD Google Play 2017 Elavon Canada

More information

HARBORTOUCH HOSPITALITY USER GUIDE. Harbortouch Technical Support: or

HARBORTOUCH HOSPITALITY USER GUIDE. Harbortouch Technical Support: or HARBORTOUCH HOSPITALITY USER GUIDE INDEX EMPLOYEE FUNCTIONS: Clocking In/Logging In Clocking Out Beginning a Transaction Payment Options Host Mode Customer Database List View Ticket Functions Item Functions

More information

Mercado Pago Payment Gateway

Mercado Pago Payment Gateway Mercado Pago Payment Gateway webkul.com/blog/mercado-pago-payment-gateway/ July 16, 2018 Mercado Pago Payment Gateway module allows the admin to provide Mercado Pago online payment method to customers

More information

Darden Repair & Maintenance Center Manual for Success

Darden Repair & Maintenance Center Manual for Success Darden Repair & Maintenance Center Manual for Success Nourishing and delighting our Restaurant Managers, now and for generations What is the Darden Repair & Maintenance Center? The Darden Repair & Maintenance

More information

Darwin manual for Principal Investigators -Invoicing/Financials-

Darwin manual for Principal Investigators -Invoicing/Financials- Darwin manual for Principal Investigators -Invoicing/Financials- McGill University Updated: August 20, 2013 Page 0 of 27 Table of Contents Introduction...2 Login to Darwin Web-based application...3 Home

More information

POS DAILY REPORT. a project guide to rezku POS. Access the Daily Report How to Read the Daily Report

POS DAILY REPORT. a project guide to rezku POS. Access the Daily Report How to Read the Daily Report POS POS a project guide to rezku DAILY REPORT Access the Daily Report How to Read the Daily Report Copyright 2017 Guest Innovations, Inc. All Rights Reserved. Daily Report The daily report is an important

More information

Capture expenses anywhere.

Capture expenses anywhere. Learn how employees use Tallie expense report software. Tallie online expense report software automates the expense report process at every step, for employees and approvers. Tallie For ios Tallie For

More information

Say hello to your new Visa Debit Card

Say hello to your new Visa Debit Card Say hello to your new Visa Debit Card A simple guide to everything you ll need to know about your new card. postofficemoney.co.uk Welcome to your new Post Office Visa Debit card Your new card allows you

More information

Walkthrough for Web-Form solution users: Invoicing via the Tungsten Network portal. How to submit the perfect invoice and avoid payment delays

Walkthrough for Web-Form solution users: Invoicing via the Tungsten Network portal. How to submit the perfect invoice and avoid payment delays Walkthrough for Web-Form solution users: Invoicing via the Tungsten Network portal How to submit the perfect invoice and avoid payment delays 1. Getting Started Begin your journey on the Procter & Gamble

More information

Essential Lite. Merchant Operator Guide. Model: Move5000

Essential Lite. Merchant Operator Guide. Model: Move5000 Essential Lite. Merchant Operator Guide. Model: Move5000 Contents Support 3 Offline Authorisation over the Floor Limit 3 Stationery orders 3 Service Response Time 3 Getting to know your Essential Lite

More information

TERMINAL STRUCTURE YOUR VX520 TERMINAL

TERMINAL STRUCTURE YOUR VX520 TERMINAL TABLE OF CONTENTS Terminal Structure Your VX520 Terminal... Terminal Structure Your VX680 Terminal... Getting Started... Purchases... Offline Sales Transactions... Refund... Void... 10 Pre-Authorisation...

More information

CommBank Small Business app User Guide

CommBank Small Business app User Guide CommBank Small Business app User Guide CommBank Small Business app user guide 2 Contents Welcome to the CommBank Small Business app 4 CommBank Small Business app in 5 easy steps 4 We re here to help 4

More information

SWAP User Guide Vendor Administrator + Technician

SWAP User Guide Vendor Administrator + Technician SWAP User Guide Vendor Administrator + Technician ANZ-GTS-SI-2005 This document remains the Intellectual Property of Cushman & Wakefield and not for general release. v Contents Definitions... 4 Access...

More information

Register App Training Guide

Register App Training Guide Register App Training Guide Outline 01 Making an Order: Page 3 02 Editing Order Details: Page 11 03 Using UPC and Barcode Scanner: Page 20 04 Executing a Transaction: Page 23 05 Customer Screen and Receipts:

More information

Attachment 2: Merchant Card Services

Attachment 2: Merchant Card Services Attachment 2: Merchant Card Services Overview The County s primary purpose in seeking proposals for merchant card services is to provide a variety of card payment options and services to County customers

More information

CardNav SM by CO-OP Frequently Asked Questions

CardNav SM by CO-OP Frequently Asked Questions CardNav SM by CO-OP Frequently Asked Questions What is CardNav SM by CO-OP? CardNav technology enables superior control, security, and financial visibility via your mobile phone. It lets you manage your

More information

2005 National Information Services - QuickBill for Easy Dental version 3.0. QuickBill. for Easy Dental. Version 3.0

2005 National Information Services - QuickBill for Easy Dental version 3.0. QuickBill. for Easy Dental. Version 3.0 QuickBill for Easy Dental Version 3.0 727 E. Utah Valley Dr., Ste. 750 American Fork, UT 84003 Tel: (800) 734-5561 Fax: (801) 847-3800 1 SEPTEMBER 2005 COPYRIGHT 2005 Easy Dental Systems, Inc. and National

More information

Presents. For Android

Presents. For Android Presents For Android Tips before getting started. Seller can open Trumer Cash Voucher pdf and open the TrumerX website simultaneously. To make the current window fill the screen s left half, hold the key

More information

FirstDose Application Release Enhancements. FirstDose Application Release Enhancements. Complete list of Enhancements

FirstDose Application Release Enhancements. FirstDose Application Release Enhancements. Complete list of Enhancements Release Notes FirstDose Application Release 3.1.4 Complete list of Enhancement of the system s barcode functionality. The system no longer requires every item in the MIL to have a Barcode in order to turn

More information

November 2016 Poynt Reseller Portal and Merchant Onboarding Activation

November 2016 Poynt Reseller Portal and Merchant Onboarding Activation November 2016 Poynt Reseller Portal and Merchant Onboarding Activation 1 Outline 05 Reseller Portal 06 Deployment 07 Merchant Support 2 05 Reseller Portal A tool for onboarding and managing your Poynt

More information

Terminal Guide. VeriFone. VX520 with VX820 PIN Pad VX820 Duet VX680 3G

Terminal Guide. VeriFone. VX520 with VX820 PIN Pad VX820 Duet VX680 3G Terminal Guide VeriFone VX520 with VX820 PIN Pad VX820 Duet VX680 3G Getting Started The VeriFone Terminal Guide will help you set up your terminal, understand your terminal s functionality, and troubleshoot

More information

Medicare Easyclaim with Blue Chip. Last updated: Monday, November 12, 2012

Medicare Easyclaim with Blue Chip. Last updated: Monday, November 12, 2012 2011 Health Communication Network Limited Level 4, 201 Pacific Highway, St Leonards, NSW 2065 1 Contents Introduction... 3 How It Works... 4 Accounts paid in full:...4 For bulk-billing:...4 For part-paid

More information

Payment Manager Users Guide - Updated 11/18/2013

Payment Manager Users Guide - Updated 11/18/2013 Payment Manager Users Guide - Updated 11/18/2013 Page 1 Advantage Payment Manager The Payment Manager can be used for transmitting payments to vendors using bank check writing programs, ACH, or virtual

More information