PAYWISER MINIPOS INTEGRATION GUIDE

Size: px
Start display at page:

Download "PAYWISER MINIPOS INTEGRATION GUIDE"

Transcription

1 PAYWISER MINIPOS INTEGRATION GUIDE TECHNICAL DOCUMENTATION Developed by: CEBASEK Denmark s.r.o. CVR-nr: Industriområdet Hovedgård Denmark Slovenian sales and developlent partner: OMNIPOS d.o.o. Štajerska ulica Slovenske Konjice INTECH d.o.o. Vrhovčeva Ljubljana ČEBAŠEK d.o.o. Polje pri Vodicah 30b 1217 Vodice Powered by: *All brands listed are a property of their respective owners P a g e 1 15

2 DOCUMENT STATUS Reference: PAYWISER MiniPOS 2015 Status: Active Version: 1.3 Version date: Confidentiality level: For internal use and partners Previous editions: Edition Validity start date Documentation creation Addendum added parameters to PWPaymentRequest and PWPaymentResponse Addendum added PWVoidRequest Added new reponse status Printer offline. Added important note to chapter 3 and It it a sole responsibility of the user to check this version for the latest update P a g e 2 15

3 TABLE OF CONTENT 1. General remarks Importing integration library into your own project Handling PayWiser MiniPOS login and credentials Integration library objects and structures PWPaymentRequest PWPaymentCredentials PWPaymentResponse PWMonetaCheck PWVoidRequest PWMiniPosIntegration PWPaymentType PWPaymentStatusCode Using integration library Recieve payment Void payment Integration usage cases You do not wish to handle any PayWiser MiniPOS credentials data You wish to handle PayWiser MiniPOS credentials data yourself Payment with credit card Payment with Moneta Payment with any supported payment method Getting Moneta Token, customer can pay later Voiding payments Support...15 P a g e 3 15

4 1. General remarks PayWiser MiniPOS integration library provides you with a simple solution for integrating payments into your own Android application. PayWiser MiniPOS and PayWiser MiniPOS integration library require at least Android version Integration is done using intents, which facilitate proprietary PayWiser MiniPOS objects for passing/returning data. Integration library is implemented as AAR (Android Archive Library) and can be imported into your existing Android Studio or Eclipse projects. In the following sections, required parameters are bold, optional parameters are italic. Fully working sample/demo project with source code is provided. P a g e 4 15

5 2. Importing integration library into your own project Integration library can be easily imported into your existing Android Studio project using the following steps: 1. download/copy pwminipos.integration.aar to your computer 2. open Android Studio and load your existing project 3. click File->New->New module 4. select Import.JAR/.AAR Package 5. browse pwminipos.integration.aar location and select it 6. click»finish«7. open build.gradle for your application and add the following line into dependencies section compile project(':pwminipos.integration') 8. sync project Integration library is now added to your existing project as a module and is ready to use. If you're using Eclipse, please refer to Eclipse documentation for instructions. P a g e 5 15

6 3. Handling PayWiser MiniPOS login and credentials Normally PayWiser MiniPOS requires setup to be fully completed before using it to process payments. Setup consists of entering the following data: PayWiser MiniPOS API key Selecting card reader type pairing bluetooth reader Furthermore, PayWiser MiniPOS requires user to be logged-in to process payments (using username and password). With integration library, there are two ways of handling user login: 1. Company and user login is handled entirely in the PayWiser MiniPOS application itself, your application does not handle any PayWiser MiniPOS credentials 2. Company and user login is handled through integration library from your application, PayWiser MiniPOS setup must only be made for selecting credit card reader and pairing Detailed explanation of each option: 1. Full PayWiser MiniPOS setup is completed: a. company API key is entered b. card reader type is selected and the reader is paired c. username and password is entered (»Remember password«is checked at the login screen) d.»login«button is clicked User is now logged in and PayWiser MiniPOS will use stored credentials for all further usage, including integration library calls. PayWiser MiniPOS can be normally used separately from your application. 2. Partial PayWiser MiniPOS setup is made: a. card reader type is selected and the reader is paired No company and user credentials are stored within paywiser MiniPOS. PayWiser MiniPOS cannot be used as a stand-alone application, with every integration library call PWPaymentCredentials object must be specified (containing company API key and username and password). IMPORTANT NOTE: Partial setup is not always allowed! This currently applies to card payment through PayPlaza, where full PayWiser MiniPOS setup is required. P a g e 6 15

7 4. Integration library objects and structures 1. PWPaymentRequest Main object for instantiating payment request with the PayWiser MiniPOS. Every PWPaymentRequest results with PWPaymentResponse. Member name Type Description Credentials PWPaymentCredentials Must be specified if only partial MiniPOS setup was made. If specified, it always overrides MiniPOS setup and its stored credentials. ReferenceID string Your own unique reference ID PaymentType integer See PWPaymentType for list of possible values. If not specified, PayWiser MiniPOS presents user with a list of possible payment types, depending on PayWiser MiniPOS account setup. Amount integer Amount in minor units of given currency (e.g. cents if in Euro) Currency string ISO letter currency code Description string Payment description MonetaJustReturnToken boolean Valid only when Moneta payment is selected (either with PaymentType or from PayWiser MiniPOS payment type, if applicable) Initiates Moneta payment and immediately returns token. CardStartReader boolean Valid only when Card payment is selected (either with PaymentType or from PayWiser MiniPOS payment type, if applicable). Card reader is connected immediately. 2. PWPaymentCredentials Object containing company and user credentials for PayWiser MiniPOS login. Must be specified if only partial PayWiser MiniPOS setup was made. Can be specified even if full PayWiser MiniPOS setup was made. If specified, it always overrides PayWiser MiniPOS setup and its stored credentials. Member name Type Description ApiKey string Valid PayWiser MiniPOS api key Username string Valid PayWiser MiniPOS user name Password string Valid PayWiser MiniPOS user password P a g e 7 15

8 3. PWPaymentResponse Return object for PWPaymentRequest and PWMonetaCheck. Member name Type Description PaymentType integer See PWPaymentType for list of possible values. If not PaymentType was specified with PWPaymentRequest and user selects payment type within PayWiser MiniPOS app, selected payment type is returned. If PaymenType was specified with PWPaymentRequest, it is returned unchanged. Amount integer Amount in minor units of given currency (e.g. cents if in Euro) AdditionalAmount integer Amount in minor units of given currency (e.g. cents if in Euro) of any additional chargec that might have occured Currency string ISO letter currency code StatusCode integer See PWPaymentStatusCode for possible values. StatusDescription string Description of StatusCode. It may contain additional data (especially if StatusCode is -1 General error). ReferenceID string Payment description ReferenceID string Your own reference ID, as specified with PWPaymentRequest PWReferenceID string PayWiser reference ID of transaction BankReferenceID string Bank reference ID of transaction (only for credit card payments) MonetaReferenceID string Moneta reference ID (only for Moneta payments). Can be later on used with PWMonetaCheck MonetaToken string Moneta token (only for Moneta payments, if MonetaJustReturnToken was specified with PWPaymentRequest) CardNumber string Number of card used for payment (only for credit card payments) CardExpDate string Expiration date of card used for payment (only for credit card payments) CardType string Type of card used for payment (only for credit card payments) CardRegion string Region of card used for payment (only for credit card payments) CardCountryCode string Country code of card used for payment (only for credit card payments) TransactionDateTime string Timestamp of transaction 4. PWMonetaCheck Object for checking Moneta payment status, if MonetaJustReturnToken was selected with PWPaymentRequest (and Moneta payment way specified with PWPaymentRequest or selected in PayWiser MiniPOS app). Every PWMonetaCheck results with PWPaymentResponse. Member name Type Description Credentials PWPaymentCredentials Must be specified if only partial MiniPOS setup was made. If specified, it always overrides MiniPOS setup and its stored credentials. MonetaReferenceID string MonetaReferenceID from PWPaymentResponse P a g e 8 15

9 P a g e 9 15

10 5. PWVoidRequest Object for voiding already completed payments. Every PWVoidRequest results with PWPaymentResponse. Member name Type Description Credentials PWPaymentCredentials Must be specified if only partial MiniPOS setup was made. If specified, it always overrides MiniPOS setup and its stored credentials. PWReferenceID string PWReferenceID from PWPaymentResponse PaymentType int See PWPaymentType for list of possible values. 6. PWMiniPosIntegration Main class for calling PayWiser MiniPOS app. Each call results in PWPaymentResponse. Method name Parameters Description RequestPayment Activity activity PWPaymentRequest request int requestcode Instantiates PayWiser MiniPOS with PWPaymentRequest. Activity is your calling activity requestcode is your desired request code (later on used in your onactivityresult) can be ommitted CheckMoneta Activity activity PWMonetaCheck int requestcode Instantiates PayWiser MiniPOS with PWMonetaCheck. Activity is your calling activity requestcode is your desired request code (later on used in your onactivityresult) can be ommitted 7. PWPaymentType Class containing payment types. Name Value Description ANY 0 Payment type is not specified. PayWiser MiniPOS will present user with a list of possible payment types, depending on PayWiser MiniPOS account setup. CREDIT_CARD 1 Credit card. User cannot select any other payment type. MONETA 2 Moneta. User cannot select any other payment type. P a g e 10 15

11 8. PWPaymentStatusCode Class containing status codes for PWPaymentResponse. Status code -1 often contains useful information about error in StatusDescription. Request parameters Name Value Description PAYMENT_COMPLETED 3 Payment completed MONETA_NOT_CONFIRMED 2 Moneta payment not yet confirmed PAYMENT_CANCELED 1 Payment canceled OK 0 Ok GENERAL_ERROR -1 General error INVALID_DATA -2 Invalid data CREDENTIALS_MISSING -3 Credentials missing DEVICE_OFFLINE -4 Device is offline NOT_ALLOWED_CREDIT_CARD -5 Credit card payments not allowed NOT_ALLOWED_MONETA -6 Moneta payments not allowed INVALID_PARAMETERS -7 Invalid parameters, check documentation VOID_ERROR -8 Unable to void (possibly already voided or missing) NOT_ALLOWED_WIWA -9 wiwapay payments not allowed PRINTER_OFFLINE -10 Printer is offline (receipt of last payament must be printer before new payment can be made) P a g e 11 15

12 5. Using integration library Integrating PayWiser MiniPOS into you Android application is done in a few easy steps. 1. create new PWPaymentRequest object 2. call PWMiniPosIntegration 3. recieve PayWiser MiniPos PWPaymentResponse 1. Recieve payment Example call: PWPaymentRequest request = new PWPaymentRequest(); request.setreferenceid(referenceid); request.setpaymenttype(paymenttype); request.setamount(amount); request.setcurrency(currency); request.setdescription(description); request.setmonetajustreturntoken(monetajusttoken); if (!apikey.isempty() &&!username.isempty() &&!password.isempty()) { PWPaymentCredentials credentials = new PWPaymentCredentials(); credentials.setapikey(apikey); credentials.setusername(username); credentials.setpassword(password); request.setcredentials(credentials); } PWMiniPosIntegration.RequestPayment(MainActivity.this, request); Example recieve result: public void onactivityresult(int requestcode, int resultcode,intent data) { super.onactivityresult(requestcode, resultcode, data); } PWPaymentResponse response=pwminiposintegration.getresponse(data); if (response!=null) { response.getstatuscode(); response.getstatusdescription(); response.getpaymenttype(); response.getamount(); response.getcurrency(); response.getreferenceid(); response.getpwreferenceid(); response.getbankreferenceid(); response.getmonetareferenceid(); response.getmonetatoken(); response.gettransactiondatetime(); } Please see provided demo application for fully working example. 2. Void payment Example call: PWVoidRequest request = new PWVoidRequest(); request.setpwreferenceid(pwreferenceid); request.setpaymenttype(paymenttype); if (!apikey.isempty() &&!username.isempty() &&!password.isempty()) { PWPaymentCredentials credentials = new PWPaymentCredentials(); P a g e 12 15

13 } credentials.setapikey(apikey); credentials.setusername(username); credentials.setpassword(password); request.setcredentials(credentials); PWMiniPosIntegration.VoidPayment(MainActivity.this, request); Example recieve result: public void onactivityresult(int requestcode, int resultcode,intent data) { super.onactivityresult(requestcode, resultcode, data); } PWPaymentResponse response=pwminiposintegration.getresponse(data); if (response!=null) { response.getstatuscode(); response.getstatusdescription(); } Please see provided demo application for fully working example. P a g e 13 15

14 6. Integration usage cases 1. You do not wish to handle any PayWiser MiniPOS credentials data User must make full PayWiser MiniPOS setup and login with»remember password«checked at login screen. All payments from your own application will be made using the same PayWiser MiniPOS user. 2. You wish to handle PayWiser MiniPOS credentials data yourself Specify PWPaymentCredentials with PWPaymentRequest or PWMonetaCheck. Even if user made full PayWiser MiniPOS setup, all calls from your own application will be made using specified credentials. This way every payment from your own application can be made using different PayWiser MiniPOS user. IMPORTANT NOTE: This use case is not always allowed! This currently applies to card payment through PayPlaza, where full PayWiser MiniPOS setup is required. 3. Payment with credit card Specify PaymentType=PWPaymentType.CREDIT_CARD with PWPaymentRequest. User will not have the ability to change payment type within PayWiser MiniPOS. 4. Payment with Moneta Specify PaymentType=PWPaymentType.MONETA with PWPaymentRequest. User will not have the ability to change payment type within PayWiser MiniPOS. 5. Payment with any supported payment method Specify PaymentType=PWPaymentType.ANY (or even leave PaymentType blank) with PWPaymentRequest. PayWiser MiniPOS will present user with a list of possible payment types, depending on PayWiser MiniPOS account setup. Selected payment type will be returned in PaymentType with PWPaymentResponse. 6. Getting Moneta Token, customer can pay later Specify PaymentType=PWPaymentType.MONETA and MonetaJustReturnToken=true with PWPaymentRequest. PayWiser MiniPOS will return MonetaToken and MonetaReferenceID. You can check status of Moneta payment later using CheckMoneta. 7. Voiding payments Use PWVoidPayment. PayWiser MiniPOS will refund your customer and will return status code. P a g e 14 15

15 7. Support In case you need additional help or questions, please direct all your inqueries to your local implementation partner. Api documentation: International support: International sales: Technology and sales partners for Slovenia: INTECH d.o.o. Vrhovčeva Ljubljana ČEBAŠEK d.o.o. Polje pri Vodicah 30b 1217 Vodice P a g e 15 15

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

Applicant Coupling. Users: Main Residency Match Applicants Fellowship Match Applicants

Applicant Coupling. Users: Main Residency Match Applicants Fellowship Match Applicants Applicant Coupling Users: Main Residency Match Applicants Fellowship Match Applicants Note: This Applicant Coupling guide explains how to complete this task using a mobile device. The menu options are

More information

Forte Mobile Application

Forte Mobile Application Forte Mobile Application User Guide v3.1.2 Updated 5.25.2017 Revision History Forte Mobile Application: User Guide v3.1.2 Version Date Changes 3.1.1 4/6/2016 New Format. Added Merchant Settings Admin Password.

More information

Applicant Coupling. Users: Main Residency Match Applicants Fellowship Match Applicants

Applicant Coupling. Users: Main Residency Match Applicants Fellowship Match Applicants Applicant Coupling Users: Main Residency Match Applicants Fellowship Match Applicants Note: This Applicant Coupling guide explains how to complete this task using a mobile device. The menu options are

More information

Virtual Terminal. Quick Start Guide. v.01_03/18

Virtual Terminal. Quick Start Guide. v.01_03/18 Virtual Terminal Quick Start Guide v.01_03/18 About This Guide Take secure card payments over the phone with a virtual terminal, providing a flexible payment option for your customers, with a personal

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

OUR NEW PAYMENT APP...

OUR NEW PAYMENT APP... OUR NEW PAYMENT APP......ALLOWS YOU TO PAY ANYTIME, ANYWHERE Available for Apple, Android and Windows smartphones Download for FREE from the Apple App Store, Google Play or Windows Phone Store Securely

More information

Optical Character Recognition. SDK Reference. Issue 04 Date

Optical Character Recognition. SDK Reference. Issue 04 Date Issue 04 Date 2018-09-12 Contents Contents 1 SDK Environment Setup...1 1.1 Applying for a Service...1 1.2 Obtaining the SDK... 1 1.3 Preparing a Java Development Environment... 1 1.4 Installing Eclipse

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

IMEI Database. Manufacturer / Brand Owner User Guide. Version September Copyright Notice. Copyright 2015 GSM Association

IMEI Database. Manufacturer / Brand Owner User Guide. Version September Copyright Notice. Copyright 2015 GSM Association IMEI Database Manufacturer / Brand Owner User Guide Version 4.0 01 September 2015 Copyright Notice Copyright 2015 GSM Association GSM and the GSM logo are registered and owned by the GSM Association. Antitrust

More information

etrac ATOM Android App Setup Guide

etrac ATOM Android App Setup Guide etrac ATOM Android App Setup Guide Version: 1.0.0 Published: 10/22/2014 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2014, All Rights Reserved. Table of Contents Initial Setup... 3 Settings...

More information

USER HELP. Copyright Information Copyright 2016 Global Payments Inc. All rights reserved worldwide.

USER HELP. Copyright Information Copyright 2016 Global Payments Inc. All rights reserved worldwide. MERCHANT SALES: 800-637-8268 New Merchant Accounts PARTNER PROGRAMS: 800-637-8268 New and existing partnerships CUSTOMER CARE: 800-338-6614 Existing merchant account support Statements and deposits Changes

More information

Introduction to Android Multimedia

Introduction to Android Multimedia Introduction to Android Multimedia CS 436 Software Development on Mobile By Dr.Paween Khoenkaw Android Intent Intent,Intent-filter What is Intent? -Intent is a message sent from one program to another

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

Getting Started with Transaction Express. Transaction Express User Guide

Getting Started with Transaction Express. Transaction Express User Guide Getting Started with Transaction Express Transaction Express User Guide Table of Contents Transaction Express User Guide... 5 Section 1 Getting Started... 5 Welcome Email... 5 Merchant List... 5 Navigation...

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

SwipeSimple Merchant FAQ

SwipeSimple Merchant FAQ How to use: SwipeSimple Merchant FAQ How do I use SwipeSimple? SwipeSimple is very easy to use. Follow the steps below to get started: 1. You can download to the SwipeSimple app from the App Store for

More information

Registration Guide to World Masters - Individuals and small groups

Registration Guide to World Masters - Individuals and small groups Registration Guide to World Masters - Individuals and small groups Contents General information... 2 General flow of actions to make a valid entry for one or more Masters Athletes... 2 Creating an account...

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

Company and User Set Up. Company Policy. NOTE: The Company Policy controls the companylevel feature entitlements and dollar limits.

Company and User Set Up. Company Policy. NOTE: The Company Policy controls the companylevel feature entitlements and dollar limits. Company and User Set Up Company Policy NOTE: The Company Policy controls the companylevel feature entitlements and dollar limits. 1. Select Commercial and then Company Policy. 2. Select a transaction type

More information

Quick Start Guide. Microinvest Warehouse Pro Mobile

Quick Start Guide. Microinvest Warehouse Pro Mobile Quick Start Guide Microinvest Warehouse Pro Mobile 2016 I. Application Installation The Microinvest Warehouse Pro Mobile is the point of sale application for mobile devices that works in tandem with the

More information

PLEXUS PAY PORTAL YOUR HOW-TO GUIDE

PLEXUS PAY PORTAL YOUR HOW-TO GUIDE PLEXUS PAY PORTAL YOUR HOW-TO GUIDE - 1 - Table of Contents Activate Account Activating Your Pay Portal Account 3 Navigating your Plexus Pay Portal 8 Managing your funds 17 Activating your Prepaid Card

More information

Merchant Portal User Guide

Merchant Portal User Guide Merchant Portal User Guide TABLE OF CONTENTS Accessing the Click Merchant Portal... 3 Virtual Terminal... 4 Single Entry (Merchant Enters Card Details)... 5 Payment Using Collected Card Details... 5 Payment

More information

FORT Mobile SDK for Android

FORT Mobile SDK for Android FORT Mobile SDK for Android Merchant Integration Guide Document Version: 2.4 February, 2018 Copyright Statement All rights reserved. No part of this document may be reproduced in any form or by any means

More information

TD ict250. Merchant Guide: UnionPay Cards. without PINpad. For the TD ict250. * PINpad not shown

TD ict250. Merchant Guide: UnionPay Cards. without PINpad. For the TD ict250. * PINpad not shown TD ict250 Merchant Guide: UnionPay Cards For the TD ict250 with PINpad without PINpad * PINpad not shown COPYRIGHT 2016 by The Toronto-Dominion Bank This publication is confidential and proprietary to

More information

PayKings iprocess Setup Guide for Android Devices

PayKings iprocess Setup Guide for Android Devices PayKings iprocess Setup Guide for Android Devices Contents: iprocess account setup 2 Installing iprocess on your Android device 3 Configuring the iprocess app 8 Attaching the iprocess card reader 10 Processing

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

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

Authorize.Net Magento 2.x Payment Module

Authorize.Net Magento 2.x Payment Module Authorize.Net Magento 2.x Payment Module User Guide Revision 1.0.1 September 17, 2018 Sep 17 2018 Authorize.Net Global Payment Management for Magento 2.x 1 Contents Document History... 4 1. Introduction...

More information

Difference Card Mobile

Difference Card Mobile Difference Card Mobile Your Guide to Getting Started Easily manage your healthcare benefit account from your mobile phone! Managing your benefit accounts on-the-go is made easy with the Difference Card

More information

Access Expense App Tutorial

Access Expense App Tutorial Contents Access Expense App Tutorial Where to download... 2 The Basics - Logging In... 3 The Directory Button... 3 Creating an Expense... 4 Add a receipt... 4 Change the Type... 4 Changing the values...

More information

Magento 2 User Guide March 11, 2018

Magento 2 User Guide March 11, 2018 Magento 2 User Guide March 11, 2018 Getting Started Logging in to your Magento 2 Admin Panel Once your account has been set up, you can access the Plugin through your Internet browser. To log in: 1. Use

More information

... 4 Free Signup File Cabinet Selection Access Files & Folders Edit Files & Folders View Files Edit Index Fields

... 4 Free Signup File Cabinet Selection Access Files & Folders Edit Files & Folders View Files Edit Index Fields Dokmee Mobile Table of Contents Getting Started Login... 4 Free Signup... 5 File Cabinet Selection... 6 Access Files & Folders... 7 Edit Files & Folders... 8 View Files... 10 Edit Index Fields... 12 Email

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

QuickBooks Plugin Documentation

QuickBooks Plugin Documentation QuickBooks Plugin Documentation UPDATED MAY 21, 2014 AGMS.COM 15707 Coit Rd Suite C210 Dallas, TX 75248 P) 866-951-AGMS F) 214-491-4401 INDEX Module Installation... 4 Step 1... 5 Step 2... 6 Step 3...

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

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

Marketing tools for Check-Inn Setup Guide & Manual. Rev. 1/22/16

Marketing tools for Check-Inn Setup Guide & Manual. Rev. 1/22/16 Marketing tools for Check-Inn Setup Guide & Manual Rev. 1/22/16 2015 Innsoft, Inc. Contents License & warranty... 5 Customer support... 6 Acknowledgement... 6 Introduction... 7 Getting Started... 8 Installation...

More information

DEALER RESOURCE CENTER TUTORIAL

DEALER RESOURCE CENTER TUTORIAL DEALER RESOURCE CENTER TUTORIAL Please review the General System Requirements and Navigation rules below before proceeding. System Requirements Internet Access is required; the faster, the better. It is

More information

USER GUIDE FOR SUPPLIERS. OpusCapita Business Network

USER GUIDE FOR SUPPLIERS. OpusCapita Business Network USER GUIDE FOR SUPPLIERS OpusCapita Business Network Contents 1. Introduction... 3 2. Finalizing registration and changing your password... 4 2.1 Finalize your registration... 4 2.2 Change your forgotten

More information

How do I merge two accounts? It is now possible to merge the accounts yourself.

How do I merge two accounts? It is now possible to merge the accounts yourself. Parent Pay FAQ How do I book meals for my child? - Navigate to www.parentpay.com and log in Select the Make bookings for... button with the symbol to book meals for your child ( bookings must be enabled

More information

RouteMobile Mobile Client Manual for Android Version: 2.0

RouteMobile Mobile Client Manual for Android Version: 2.0 RouteMobile Mobile Client Manual for Android Version: 2.0 Route Mobile Limited 2018. All rights reserved 1 Contents Installation... 3 Getting Started... 5 Login Page... 6 Main Screen... 7 Send SMS... 9

More information

Internet Banking Update December 2008 New Features

Internet Banking Update December 2008 New Features Internet Banking Update December 2008 New Features CONTENTS Pending Authorisations... 2 How it Works...2 Client Maintenance... 6 How it Works...6 External Transfer Batch Uploads... 9 How it Works...9 Enhanced

More information

PayTabs Android SDK Integration Guide

PayTabs Android SDK Integration Guide PayTabs Android SDK Integration Guide INTEGRATION GUIDE VERSION 3.0 Table of Contents 1 Overview 4 1.1 Test Merchant Account v/s Live Merchant Account 4 1.2 Target Audience 4 1.3 Assistance 4 1.4 Documentation

More information

Online Banking Procedures

Online Banking Procedures Table of Contents Online Banking Procedures... 2 1.1 Sign into Online Banking- No Token...2 1.2 Sign into Online Banking- Token...3 1.3 Change Account Nickname...5 Stop Payments... 7 1.4 New Stop Payments...7

More information

API Operator Training and Examination Program. User s Guide

API Operator Training and Examination Program. User s Guide API Operator Training and Examination Program User s Guide 2 Contents Register for an account Page 3 Order a single program Page 7 Add additional program(s) Page 11 Use a Promotional Code Page 12 Use a

More information

CASH WITHDRAWAL. User manual

CASH WITHDRAWAL. User manual CASH WITHDRAWAL User manual CONTENT Content... 2 1 Introduction... 3 1.1 Overview... 3 1.2 About Cash Withdrawal... 3 1.3 Using this manual... 3 2 How to Access the application... 4 2.1 Credentials and

More information

Chase Mobile Checkout PLUS Mobile Application User Guide. Grow your business whenever and wherever you want!

Chase Mobile Checkout PLUS Mobile Application User Guide. Grow your business whenever and wherever you want! SM Chase Mobile Checkout PLUS Mobile Application User Guide Grow your business whenever and wherever you want! 1 Contents Welcome to Chase Mobile Checkout PLUS 3 Updating Your Account Profile 25 Getting

More information

uite 401, CFM building, 23 Lang Ha, Hanoi, Vietnam POS ios V1.4 USER GUID E 2015 SmartOSC and X-POS for ios

uite 401, CFM building, 23 Lang Ha, Hanoi, Vietnam POS ios V1.4 USER GUID E 2015 SmartOSC and X-POS for ios uite 401, CFM building, 23 Lang Ha, Hanoi, Vietnam - 84.4 3514 9883 - info@smartosc.com -POS ios V1.4 USER GUID E 2015 SmartOSC and X-POS for ios Table of Contents About X-POS for ios... 3 Main features,

More information

MSEDCL e-tendering Contractor Registration Guide

MSEDCL e-tendering Contractor Registration Guide MSEDCL e-tendering Contractor Registration Guide Table Of Contents Getting Started...4 Getting Started...4 Contractor Registration...5 Adding Company Details...5 Adding Company Contact Details...8 Registration

More information

Password Changer User Guide

Password Changer User Guide Active@ Password Changer User Guide Copyright 1999-2017, LSOFT TECHNOLOGIES INC. All rights reserved. No part of this documentation may be reproduced in any form or by any means or used to make any derivative

More information

PayTabs Android SDK Integration Guide

PayTabs Android SDK Integration Guide PayTabs Android SDK Integration Guide INTEGRATION GUIDE VERSION 2.5 Table of Contents 1 Overview...4 1.1 Test Merchant Account v/s Live Merchant Account...4 1.2 Target Audience...4 1.3 Assistance...4 1.4

More information

Thermwood CNC Rental Features

Thermwood CNC Rental Features Thermwood CNC Rental Features Overview; This manual will help you better understand the new features in the Thermwood Software for use with the CNC Rental Programs. All dialog boxes, features, etc. will

More information

RESELLERS USER GUIDE

RESELLERS USER GUIDE RESELLERS USER GUIDE 1 doctorsim Pro LOGIN Login to doctorsim Pro You can login by typing pro.doctorsim.com in your web browser. Type your e-mail and password. Have you forgotten your password? If you

More information

Querying with Transact-SQL

Querying with Transact-SQL Querying with Transact-SQL Getting Started with Azure SQL Database / SQL Server Overview Transact-SQL is an essential skill for database professionals, developers, and data analysts working with Microsoft

More information

Pay. Quick Start Guide Sage One. Pay QUICK START GUIDE SAGE ONE

Pay. Quick Start Guide Sage One. Pay QUICK START GUIDE SAGE ONE QUICK START GUIDE SAGE ONE 1 Our easy to use guide will get you up and running in no time! Index: Page: 2 Login Now 3 How to issue a service key 3 Inserting service keys into 4 Enable the Customer Zone

More information

IRIS OpenEnrol & IRIS OpenPayslips. Employee Guide

IRIS OpenEnrol & IRIS OpenPayslips. Employee Guide IRIS OpenEnrol & IRIS OpenPayslips Employee Guide Contents How to open your IRIS OpenEnrol or IRIS OpenPayslips account... 3 Mobile apps... 4 Examples of Android App Screens... 4 Examples of IOS App Screens...

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

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

FORT Mobile SDK for Android

FORT Mobile SDK for Android FORT Mobile SDK for Android Merchant Integration Guide Document Version: 3.0 December, 2018 Copyright Statement All rights reserved. No part of this document may be reproduced in any form or by any means

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

OSP Quick Start Guide

OSP Quick Start Guide OSP Quick Start Guide Table of Contents Notes...1 Overview...1 Site Information...2 Login to Portal...2 Activity Setup...3 Add Activity...3 Activity Lookup...4 Edit Activity...4 Remove Activity...4 View

More information

A GUIDE TO MEMBERSWORLD - GETTING STARTED - MAKING CLAIMS - CHECKING CLAIMS PROGRESS - SUBMITTING PRE- AUTHORISATION REQUESTS

A GUIDE TO MEMBERSWORLD - GETTING STARTED - MAKING CLAIMS - CHECKING CLAIMS PROGRESS - SUBMITTING PRE- AUTHORISATION REQUESTS A GUIDE TO MEMBERSWORLD - GETTING STARTED - MAKING CLAIMS - CHECKING CLAIMS PROGRESS - SUBMITTING PRE- AUTHORISATION REQUESTS WHAT CAN YOU DO ON MEMBERSWORLD? Submit claims and pre-authorisation applications

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

Giving to your church is as easy as 1-2-3

Giving to your church is as easy as 1-2-3 Giving to your church is as easy as 1-2-3 Go to the App Store or Google Play and search for GivePlus Church to download for FREE. 1) Search 2) Select 3) Submit Enter church name or tap Find Churches Near

More information

Suncorp MPOS Plus Quick Reference Guide (icmp)

Suncorp MPOS Plus Quick Reference Guide (icmp) Suncorp MPOS Plus Quick Reference Guide (icmp) Contents How to Use this Guide 3 Contact Details 4 Terminal Overview 5 MPOS (icmp) Terminal Pin Pad Layout 5 MPOS (icmp) Terminal Display Layout 6 How to

More information

Unit: Financials Topic: Manage the Chart of Accounts

Unit: Financials Topic: Manage the Chart of Accounts Solutions Unit: Financials Topic: Manage the Chart of Accounts 1-1 Transactions Which function do you use to change the properties for a G/L account? Financials Chart of Accounts Which function do you

More information

INBUSINESS BANKING SYSTEM

INBUSINESS BANKING SYSTEM Introducing your new INBUSINESS BANKING SYSTEM Companion Guide to Business Banking Video Tutorials Updated 0.09.8 WELCOME TO THE INBUSINESS SYSTEM The InBusiness System will help you efficiently and securely

More information

Sales Station Mobile User Guide

Sales Station Mobile User Guide Sales Station Mobile User Guide Doubleknot, Inc. 20665 Fourth Street, Suite 103 Saratoga, California 95070 Telephone: (408) 971-9120 Email: doubleknot@doubleknot.com SSM-OPS-UG-1.0 2016 Doubleknot, Inc.

More information

myprint help topics myprint account Creating a myprint account Closing your myprint account

myprint help topics myprint account Creating a myprint account Closing your myprint account myprint help topics myprint account Creating a myprint account Closing your myprint account Logging in Logging in on myprint Logging in via Facebook, Microsoft or Google Home page Printing with myprint

More information

TIS HELP FOR INDEPENDENT OPERATORS CONTENTS

TIS HELP FOR INDEPENDENT OPERATORS CONTENTS TIS HELP FOR INDEPENDENT OPERATORS CONTENTS 1 INTRODUCTION... 3 1.1 TIE... 3 1.2 Account set up in TIS... 3 1.3 VAT number (EU only)... 3 1.4 Business license number (China only)... 3 1.5 Access levels...

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

squid transit purse guidance notes

squid transit purse guidance notes squid transit purse guidance notes Slide 1 To set-up a squid account you need to access the squid website which can be located via our website at: http://www.prenticecoaches.co.uk/smar trip.html Scroll

More information

Partner Web Services. GetMyPrice Service Manual

Partner Web Services. GetMyPrice Service Manual Partner Web Services GetMyPrice Service Manual Contents 1 Introduction... 5 1.1 Overview... 5 1.2 Supporting Resources... 5 2 Service Overview... 5 2.1 Benefits of GetMyPrice Service... 6 3 Service Endpoints...

More information

MultiSafepay Integration manual

MultiSafepay Integration manual MultiSafepay Integration manual Magento plug-in v2.4.1 MultiSafepay Payment plug-in for Magento https://www.multisafepay.com Copyright (C) 2016 MultiSafepay.com Magento Plug-in 1 Table Of Contents Table

More information

Sberbank Online User Guide

Sberbank Online User Guide Sberbank Online User Guide Contents 1. Introduction... 2 1.1 Available services... 2 1.2 Security... 2 2. First use... 3 2.1 Login... 3 2.2 Password change... 3 2.3 PIN change... 5 2.3 User profile...

More information

Patients' FAQs. Patient Portal Version 2.7 NEXTMD.COM

Patients' FAQs. Patient Portal Version 2.7 NEXTMD.COM Patients' FAQs Patient Portal Version 2.7 NEXTMD.COM November 2018 Enrollment How do I enroll in the NextGen Patient Portal website? Your practice can enroll you in NextGen Patient Portal in one of the

More information

SAS Airline IT. AAM Help AAM AADS (Administration Module) External User. Version 3.0

SAS Airline IT. AAM Help AAM AADS (Administration Module) External User. Version 3.0 SAS Airline IT AAM Help AAM AADS (Administration Module) External User Version 3.0 Help AAM AADS (Administration Module) External User External Date: 00-05-5 Revision History Date Version Description Author

More information

SMAATSDK. NFC MODULE ON ANDROID REQUIREMENTS AND DOCUMENTATION RELEASE v1.0

SMAATSDK. NFC MODULE ON ANDROID REQUIREMENTS AND DOCUMENTATION RELEASE v1.0 SMAATSDK NFC MODULE ON ANDROID REQUIREMENTS AND DOCUMENTATION RELEASE v1.0 NFC Module on Android Requirements and Documentation Table of contents Scope...3 Purpose...3 General operating diagram...3 Functions

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

Gift Card Instructions Daxko Spectrum

Gift Card Instructions Daxko Spectrum Gift Cards Gift card are good to use for a variety of reason: 1. You can track the declining balance on them. 2. You can recharge them; treat it as a cash card. The cards can be attached to a recipient.

More information

XERO SETUP GUIDE. Dave Carr

XERO SETUP GUIDE. Dave Carr XERO SETUP GUIDE Abstract Guidelines for integrating Eazy Collect with Xero to issue invoices, collect payment by Direct Debit and reconcile payments back into Xero automatically. Dave Carr Table of Contents

More information

New Web Portal User Guide. Table of Contents. First Time Login.. 2. Login and Reset Password.. 5. Pay Assessments and Utilities..

New Web Portal User Guide. Table of Contents. First Time Login.. 2. Login and Reset Password.. 5. Pay Assessments and Utilities.. New Web Portal User Guide Table of Contents HINT: Click on any item below to go directly to that page. Click on any page number to return to the Table of Contents. First Time Login.. 2 Login and Reset

More information

ROAMpay TM. X4 User's Guide

ROAMpay TM. X4 User's Guide ROAMpay TM X4 User's Guide Last Modified: 06/14/2013 Contents 1 Activating ROAMpay X4 2 Using the System 2 Login 2 First-time Login 2 Default Settings 3 Retrieving Your Password 3 Online Sales 4 Saved

More information

TD ict250. Merchant Guide: Pre-authorizations. without PINpad. For the TD ict250. * PINpad not shown

TD ict250. Merchant Guide: Pre-authorizations. without PINpad. For the TD ict250. * PINpad not shown TD ict250 Merchant Guide: Pre-authorizations For the TD ict250 with PINpad without PINpad * PINpad not shown COPYRIGHT 2016 by The Toronto-Dominion Bank This publication is confidential and proprietary

More information

SIGN UP FOR AN AUTOMATIC PAYMENT PLAN

SIGN UP FOR AN AUTOMATIC PAYMENT PLAN SIGN UP FOR AN AUTOMATIC PAYMENT PLAN When you go to www.nyack.edu/sfs/payplan you should see the following: Click on the Sign up for a PAYMENT PLAN option. Upon clicking, you should see the following:

More information

Member Self Service. Member Quick Guide

Member Self Service. Member Quick Guide Member Self Service Member Quick Guide Welcome to Member Self Service (MSS). This quick guide will help you to best utilize MSS. If you have any questions on using MSS please contact Program Director Renee

More information

Guardian Account Setup and epayment

Guardian Account Setup and epayment Walkthrough: Scenario: Student wants to add her father to her Guardian list to allow him to pay her tuition and fees. Path: Sign into Buckeye Link My Buckeye Link STUDENT S STEPS: 1. Navigate to the My

More information

How to request new EPPO codes to be created in the EPPO Global Database?

How to request new EPPO codes to be created in the EPPO Global Database? How to request new EPPO codes to be created in the EPPO Global Database? - Guidelines - Contents Registering on the EPPO Global Database (new user) Logging in (already registered user) Necessary tools

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

NRS Registration for Club Contacts and Team Contacts:

NRS Registration for Club Contacts and Team Contacts: How to Register: NRS Registration for Club Contacts and Team Contacts: 1. Creating Clubs and Teams 2. Adding Coaches and Players to Teams 3. Removing Players from a Team Version 2016.1 September 2016 This

More information

Server Manager User and Permissions Setup

Server Manager User and Permissions Setup Login and Security Once you successfully create your company databases, the next step is to define the groups and users that can access the TRAVERSE data and the functionality they will have within the

More information

Merchant Administration User Guide

Merchant Administration User Guide Merchant Administration User Guide For MasterCard Payment Gateway Version 6.8 09 March 2017 Notices Following are policies pertaining to proprietary rights and trademarks. Proprietary Rights The information

More information

Welcome to the Online Payment Center for MFA Oil Company

Welcome to the Online Payment Center for MFA Oil Company Welcome to the Online Payment Center for MFA Oil Company To Enroll your MFA Oil Company account, select the Enroll Now button. Once you click on Enroll Now, you will be directed to the Terms and Conditions

More information

MOBILE BANKING APPLICATION USER GUIDE

MOBILE BANKING APPLICATION USER GUIDE MOBILE BANKING APPLICATION USER GUIDE Table of Contents New User Registration View Account Balances Transfer within Your Accounts Pay Your Credit Card Transfer to Other Accounts Locate Nearby Branches

More information

Classification: Public ANZ TRANSACTIVE GLOBAL ADMINISTRATION USER GUIDE

Classification: Public ANZ TRANSACTIVE GLOBAL ADMINISTRATION USER GUIDE Classification: Public ANZ TRANSACTIVE GLOBAL ADMINISTRATION USER GUIDE 11 2015 CONTENTS INTRODUCTION... 3 USERS... 4 FUNCTION ROLES AND DATA ROLES... 5 FUNCTION ROLES... 5 Create a Function Role... 8

More information

E-Bill Express User Manual

E-Bill Express User Manual E-Bill Express User Manual Table of Contents Enroll in E-Bill Express... 2 Add a Payment Method... 8 ACH (Bank Account)... 9 Credit / Debit Card... 10 Update or Delete a Payment Method... 11 Update...

More information

SIDC Online Application Portal

SIDC Online Application Portal SIDC Online Application Portal Corporate Account User Guide 1. Overview... 1 2. How to Register Corporate Account?... 1 3. How to Confirm Account?... 7 4. How to Fill Application Form?... 10 4.1 Fill Application

More information

Getting Started with Cloudamize Manage

Getting Started with Cloudamize Manage Getting Started with Cloudamize Manage This guide helps you getting started with Cloudamize Manage. Sign Up Access the Sign Up page for the Cloudamize Manage by: 1. Click the Login button on www.cloudamize.com

More information

CASHNet - Departmental Deposits Instructions for Departments

CASHNet - Departmental Deposits Instructions for Departments CASHNet - Departmental Deposits Instructions for Departments Getting Started... 2 Logging in to CASHNet... 2 Home Page Menu / Accessing Departmental Deposits Module... 2 Adding a New Deposit... 4 Reference

More information