TECHNICAL DOCUMENT. Prepaid Program Batch File Interface Specification. VERSION 1.0b DRAFT 3 DATE

Size: px
Start display at page:

Download "TECHNICAL DOCUMENT. Prepaid Program Batch File Interface Specification. VERSION 1.0b DRAFT 3 DATE"

Transcription

1 TECHNICAL DOCUMENT Prepaid Program Batch File Interface Specification VERSION 1.0b DRAFT 3 DATE

2 Introduction This document is intended to define the batch file interface used for management of DCBank prepaid services and products, including payments, wallet/account management, and issuance and reload functionality for card-based (closed-loop, gift, debit, MasterCard and VISA) products. Throughout the following text, the terms 'wallet' and 'account' are used somewhat interchangeably; both refer to the pool of funds to which cards are attached, but in general terms only actual bank account products are referred to as an 'account', with 'wallet' representing nonbank products. The wallet/account distinction has little impact on batch functions, other than certain functions only being valid for actual bank-grade products. For technical support with the contents of this specification, please contact your account manager, or Page 1 of 14

3 Batch File Operating Procedures 1. Note that under no circumstances are customers permitted to store DCBank card numbers, whether in cleartext or encrypted form. Users will be permitted to store a SHA- 1 hash of any cards they process, as well as a truncated (first 6 and last 4 digits only) cardnumber for purposes of display to users. Wallet and account numbers (including bank account numbers) as well as 13-digit card serial numbers are not considered sensitive data, and may be stored using all reasonable security and privacy precautions. 2. When a batch file is received, the first step in processing each line is to validate the presence and format of all required columns. Only once all columns are verified is the line processed; otherwise the line is rejected with the first detected error parameter as the failure reason. 3. Errors in individual lines will not prevent valid lines in the file from processing - meaning users must be prepared to handle cases where a file was partially processed (i.e. some records were successful, while some records were not). Page 2 of 14

4 Request Files Files submitted to DCBank should be named according to the following format: PCSV0100mmmmmYYMMDDnnn.txt Where: - 'PCSV' is a fixed value identifying this file as a Prepaid comma-separated value file is a fixed value indicating file format major/minor version (currently 1.00) - 'mmmmm' represents a five-digit number assigned by DCBank and provided by your account representative, which will be used to identify your organization as the originator of the file (all files generated by your organization must use the correct value) - 'YYMMDD' represents the date the file was generated - 'nnn' is a three-digit number, which must be unique within a given 'YYMMDD' value; this is intended to allow users to submit multiple files per day (for ease of tracking, it is recommended that users start each day with file number '001', and increment with each subsequent file). Files should not contain headers or footers; each line within the file will always begin with a fourcharacter "RowType" value, which is made up of a two-character function identifier followed by a two-character major/minor revision number for that record type; how the remainder of the line is structured will vary by RowType, as outlined below. Receipt Files Once submitted files are processed by DCBank, receipt files will be generated, named according to the following format: PREC0100mmmmmYYMMDDnnn.txt Where: - 'PREC' is a fixed value identifying this file as a Prepaid Receipt file is a fixed value indicating file format major/minor version (currently 1.00) - 'mmmmm', 'YYMMDD' and 'nnn' will all be echoed from the original file Receipt files will contain one line for each entry from the source file, as detailed below; input lines which are not in a recognized format will have a receipt RowType of "INV00". Receipt lines will appear in the same order as entries from the source file (providers are encouraged to use distinct UserReference values if more exact request-to-response mapping is required). Page 3 of 14

5 Data Dictionary Glossary The following terms are used throughout this document: - PAN: Primary Account Number, also referred to as cardnumber, digits in length - BIN: Bank Identification Number, the leading digits of a cardnumber which identify the bank issuing the card; variable length (generally the first 6 to 10 digits of a cardnumber) Field formats Throughout the service reference below, field values are described as follows: - Alpha (x-y): A-Z and a-z characters only, between x and y characters in length - AN (x-y): Alphanumeric characters only, between x and y characters in length - ANS (x-y): Alphanumeric and special characters only, between x and y characters in length; permitted 'special' characters will be specifically identified - Base64: Base-64-encoded string (hexadecimal characters plus /+= characters only) - Datetimeoffset: String representation of a UTC time, in format "YYYY-MM-DD hh:mm:ssz" (e.g. " :30:00Z") - Decimal (x,y): Decimal value, maximum x total length, maximum y decimal places (e.g. maximum value for decimal(6,3) would be ) - GUID: String representation of a globally-unique identifier value (e.g. "8B8696C4-FD0D- 4D60-B A") - Hash (SHA1): String representation of a SHA1 binary hash value must be exactly 40 hexadecimal characters, or optionally the characters "0x" followed by exactly 40 hexadecimal characters (see Appendix A for further details on hash value generation) - Hash (SHA256): String representation of a SHA256 binary hash value must be exactly 64 hexadecimal characters, or optionally the characters "0x" followed by exactly 64 hexadecimal characters - Integer (x): Integer value (whole number), maximum value x (optional), leading zeroes ignored - Money ($x.xx): Money value (at least one digit followed by decimal and exactly two decimal places), maximum value $x.xx (optional); leading zeroes as well as $ character, if present, are ignored - Numeric (x-y): Numeric characters only, between x and y characters in length - String (x): Freeform text, maximum length x (valid for responses only) Page 4 of 14

6 "Required" flags Fields will use one of the following to indicate whether the field is a required element: - Required: Must be provided - Optional: May or may not be provided - Approved: Required if request is approved (valid for responses only) - Conditional: May or may not be required (conditions defined in associated comments) - Invalid: Should not be provided (i.e. reserved for future use) Columns marked as optional or conditional can be left blank; trailing blank fields can be excluded completely if desired, but all columns must be included as placeholders if they are followed by a non-blank value in a later column. For example, in a file with two required columns and three optional columns: - "COL1,COL2,COL3": Acceptable: COL4, COL5 excluded - "COL1,COL2,COL3,,": Acceptable: COL4, COL5 included and left blank - "COL1,COL2,,,COL5": Acceptable: Placeholders for COL3 and COL4 included - "COL1,COL2,COL5": Not acceptable: COL5 value will be interpreted as COL3 Page 5 of 14

7 Card Product Management Requests Reload Card RowType 'RC' The Reload Card function allows a pre-existing card to have funds added to its available balance. The card must be valid, and must be registered to the requesting merchant. Column 2 can be either a SHA1 PANHash value OR a 13-digit card serial number. Note that reload requests for cards which are invalid, non-reloadable, or have been disabled (or for cards associated with clients with expired or invalid identification values on file) will be rejected. Parameter Required Format Comments Request File RowType Required AN (4) "RC10", for "Reload Card version 1.0" PANHash Required Hash (SHA1) Identifies the card to be reloaded - OR - SerialNumber - OR - Numeric (13) LoadAmount Required Money Reload amount (gross amount to be credited to card balance before fees) SourceOfFunds Required Integer Identifier for source of LoadAmount funds (see Appendix B) UserReference Optional AN (1-10) Optional value, echoed in response UserLoggingData Optional AN (1-26) User-defined value stored in database for use in reporting (optional) CustomFee Optional Money Amount to be deducted from LoadAmount before crediting card balance; see note 1. Receipt File RowType Required AN (4) Echoed from request ResponseCode Required Integer Zero success, non-zero failure ResponseMessage Required String (255) Descriptive response message for troubleshooting UserReference Conditional AN (1-10) Echoed from request, if present TransactionTimestamp Approved String (14) YYYYMMDDHHMMSS timestamp generated from card system ReferenceNumber Approved Integer Unique identifier for reload transaction EndingBalance Approved Money Balance on card at completion of operation Note 1: CustomFee may be blank or zero; if provided, the total amount of CustomFee plus any fees charged automatically by DCBank must be less than or equal to LoadAmount (i.e. the net amount of a reload request cannot be less than zero). CustomFee charges will be logged and displayed as a separate transaction on cardholder statements and reports. Page 6 of 14

8 Money Transfer Requests Create Transfer RowType 'CT' The Create Transfer function allows new "money transfer" transactions to be created and delivered to a recipient; note that at present only bulk Interac etransfer transactions are supported. Parameter Required Format Comments Request File RowType Required AN (4) "CT10", for "Create Transfer version 1.0" TransferType Required Integer Transfer type being sent. As of this writing, only TransferType 1 (Interac etransfer) is supported. DeliveryType Required Integer Method of transfer delivery to be used. As of this writing, only DeliveryType 1 (bulk) or 2 (priority bulk) are supported. ReceiverPartyType Required Integer 'Party type' code for recipient. As of this writing, only PartyType 1 ( address) is supported. ReceiverAddress Required ANS (1-80) Recipient address, validation rules depend on ReceiverPartyType. As of this writing, must be a valid address. ReceiverName Required ANS (1-80) Name of individual receiving transfer; alpha, space, hyphen and apostrophe characters only TransferAmount Required Money Amount of funds to send TransferMemo Optional ANS (1-80) Optional message to be sent with transfer; alphanumeric, space and the following characters only:.!@/;:'=$?*() SecurityQuestion Required ANS (1-120) Text of security question to be presented to receiver; format and allowed characters as TransferMemo field. As of this writing, this field is required as Interac etransfer requires it; will become Conditional if other transfer types are added. SecurityAnswer Required ANS (3-25) Answer to security question, only alphanumeric and hyphen characters permitted. As of this writing, this field is required as Interac etransfer requires it; will become Conditional if other transfer types are added. See note 1. UserReference Optional AN (1-10) Optional value, echoed in response Receipt File RowType Required AN (4) Echoed from request ResponseCode Required Integer Zero success, non-zero failure ResponseMessage Required String (255) Descriptive response message for troubleshooting UserReference Conditional AN (1-10) Echoed from request, if present TransactionTimestamp Approved String (14) YYYYMMDDHHMMSS timestamp generated from card system ReferenceNumber Approved String (12) Unique identifier for transfer, formatted as "TC" followed by 10 digit numeric value Page 7 of 14

9 Note 1: For Interac etransfer requests, formatting on the SecurityAnswer field will be strictly enforced (alphanumeric and hyphen characters only). Permitted characters allowed in this field can vary based on the recipient's financial institution, as such DCBank enforces the narrowest possible set of results to avoid creating transfers which cannot be claimed by individuals using certain institutions. Page 8 of 14

10 Create EFT RowType 'CE' The Create EFT function allows new EFT/PAD (pre-authorized debits or credits) to be created. Parameter Required Format Comments Request File RowType Required AN (4) "CE10", for "Create EFT version 1.0" CustomerName Required ANS (1-30) Name of target account owner; alphanumeric, space, hyphen, period and apostrophe characters only Bank Required Numeric (3-4) Numeric identifier of institution to which Transit belongs Transit Required Numeric (5) Numeric identifier of bank branch to which Account belongs Account Required Numeric (4-12) Account number to debit/credit Amount Required Money Amount of transfer Type Required Alpha (1) Either "C" (credit, i.e. push Amount to Account) or "D" (debit, i.e. pull Amount from Account) CustomerID Conditional ANS (20) Unique identifier for this customer; alphanumeric, space, hyphen and period characters only. See note 1. TransactionID Conditional Numeric (1-9) Numeric identifier for this transaction; see note 1. EffectiveDate Required Numeric (8) YYYYMMDD payment will be effective (cannot be past-dated) Comment Optional ANS (30) Optional value to be applied as "originator" name for this payment (depending on FI, will typically show on account statement for this transaction). Alphanumeric, space, hyphen and period characters only. UserReference Optional AN (1-10) Optional value, echoed in response Receipt File RowType Required AN (4) Echoed from request ResponseCode Required Integer Zero success, non-zero failure ResponseMessage Required String (255) Descriptive response message for troubleshooting UserReference Conditional AN (1-10) Echoed from request, if present TransactionTimestamp Approved String (14) YYYYMMDDHHMMSS timestamp generated from EFT system ReferenceNumber Approved Integer Unique identifier for transfer Note 1: CustomerID and TransactionID are used for purposes of duplicate transmission checking (together with bank/transit/account and amount), as well as some reporting functions. It is highly recommended that distinct values are provided for these fields to prevent false positives on duplicate checks. Page 9 of 14

11 Appendix A Example Data PANHash values As noted in the data dictionary above, PANHash fields are to be populated with a string representation of a SHA1 binary hash of the cardnumber (PAN); they must be exactly 40 hexadecimal characters, or optionally the characters "0x" followed by exactly 40 hexadecimal characters. Examples of hash values: PAN PANHash "0x65C106640B4EDD589AF8298D10562BF638DB399E" "0xEE62999DC26707FA8DE9963B46088A2776DB106D" "0x E23C0460BFC7EE D716A3D00C34" "0x5B1FE842A5A677DAB28FDE98D887325B5D9117D0" "0x40CF F2DFDDF19EB2898F99E3F2329DAE1" "0x E4C4E91EF34AB0C089A2A9BD27CBDC89C" "0xFB7B86D61BD34B6B59285C6241ACFF4B5DF79EC8" Page 10 of 14

12 Appendix B Reference Files As noted above, these files are provided (and may be updated from time-to-time) in order to provide users with all necessary reference values for batch file interfaces. Filenames will include the date on which they were generated; users should always ensure they are using the most recent version of all reference files. Note that unlike input files, reference files WILL have header records. SourceOfFunds This file provides values for the "SourceOfFunds" parameter associated with amounts being loaded to cards/accounts/etc. Files will be named PCSVREF_SOF_YYMMDD.txt, and will contain: SourceCode Required Integer Numeric identifier for this 'source of funds' value SourceDesc Required String Descriptive string for this value (for information purposes only) AccountPurpose This file provides values for the "AccountPurpose" parameter associated with new activations. Files will be named PCSVREF_AP_YYMMDD.txt, and will contain: AccountPurpose Required Integer Numeric identifier for this 'account purpose' value AccountPurposeDesc Required String Descriptive string for this value (for information purposes only) Occupation This file provides values for the "Occupation" parameter associated with card/account holders. Files will be named PCSVREF_OCC_YYMMDD.txt, and will contain: OccupationID Required Integer Numeric identifier for this occupation OccupationDesc Required String Descriptive string for this value (for information purposes only) Page 11 of 14

13 IDType This file (named PCSVREF_IDS_YYMMDD.txt) provides a listing of identification types which can be used when activating or updating a client record, including information on validation rules and eligibility, as follows: IDType Required Integer Numeric identifier for this identification type IDDesc Required String Descriptive string for this ID type (for information purposes only) IsPrimary Required Integer Indicates whether this IDType is (1) or is not (0) valid as 'primary' identification IsPhoto Required Integer Indicates whether this IDType is (1) or is not (0) valid as 'photo' identification IssueLocationRequired Required Integer Indicates whether state/province of issue is required (1) or optional (0) IssueDateRequired Required Integer Indicates whether date of issue is required (1) or optional (0) ExpiryDateRequired Required Integer Indicates whether expiration date is required (1) or optional (0) AccountClassID This file (named PCSVREF_ACC_YYMMDD.txt) provides a listing of account classes which are valid for activation, along with additional configuration information related to each class, as follows: AccountClassID Required Integer Numeric identifier for this account class AccountClassDesc Required String Descriptive string for this account class (for information purposes only) AccountType Required Integer Indicates debit (20) or MasterCard/Visa (30) IsBankAccount Required Integer Indicates whether this account class is a bank account product (1) or non-bank wallet product (0) RequireCustomerInfo Approved Integer Indicates whether customer name, DOB, address, etc. will be required (1) or not (0) RequirePrimaryID Approved Integer Indicates whether primary ID will be required (1) or optional (0) Page 12 of 14

14 RequirePrimaryPhoto Approved Integer Indicates whether primary ID must be photo ID (1) or not (0) RequireSecondaryID Approved Integer Indicates whether secondary ID will be required (1) or optional (0) RequireSecondaryPhoto Approved Integer Indicates whether secondary ID must be photo ID (1) or not (0) BINID This file (named PCSVREF_BIN_YYMMDD.txt) provides a listing of BIN values which can be used for card-based requests, as follows: BINID Required Integer Numeric identifier for this BIN BIN Required Numeric Leading digits of this BIN CardType Required Integer 1 = Debit, 2 = MasterCard, 3 = Visa PANLength Required Integer Total number of digits in PANs using this BIN StateProvID This file (named PCSVREF_PROV_YYMMDD.txt) provides a listing of state/province codes which can be used for cardholder address or identification, as follows: StateProvID Required Integer Numeric identifier for this state/province StateProvShortName Required Alpha (2) Alpha code for this state/province StateProvName Required String Full name of state/province TransferType, DeliveryType, PartyType This file (named PCSVREF_MTGRID_YYMMDD.txt) provides all valid combinations of TransferType, DeliveryType and PartyType for use in money transfer requests: TransferType Required Integer Identifier for transfer type to be sent TransferTypeDesc Required String Descriptive string/name of transfer type TransferTypeLongDesc Required String Long-form description of transfer type DeliveryType Required Integer Identifier for method of delivery to be used DeliveryTypeDesc Required String Descriptive string/name of delivery type PartyType Required Integer Identifier for party type Page 13 of 14

15 PartyTypeDesc Required String Description of this party type PartyTypeValidation Required String Regular expression against which addresses belonging to this party type will be checked Note that any given TransferType, DeliveryType and PartyType value can and will appear multiple times in this file; only the combination of all three of TransferType, DeliveryType and PartyType will be unique. Page 14 of 14

16 Revision History Version Date Changes 1.0b DRAFT /09/27 Reformatted document; fixed formatting of ReferenceNumber in CT10 receipt file 1.0b DRAFT /08/28 Added support for Create EFT (CE10) function, updated CT10 comments to note priority bulk now supported 1.0b DRAFT /09/14 Added support for Create Transfer function, reference file

ISO Data Element Definitions

ISO Data Element Definitions SECTION 4 ISO 8583 1987 DATA ELEMENT DEFINITIONS Overview...4-1 Bit Maps...4-2 Annotation Conventions For Data Element s...4-3 General Representation...4-3 Length s...4-4 Field Content s...4-5 Conventions

More information

Alias Directory Service

Alias Directory Service Alias Directory Service Technical Specifications Version 3.0 24 August 2018 Important Information on Copyright 2018 Visa. All Rights Reserved. The trademarks, logos, trade names and service marks, whether

More information

Wire File Import + Upload // Business ebanking

Wire File Import + Upload // Business ebanking Wire File Import + Upload // Business ebanking About Wire File Import Company users who have any of the one-time or template-based services enabled (and appropriate account entitlements) can import files

More information

Central 1 s AFT File Specifications

Central 1 s AFT File Specifications Originators that upload AFT files to Central 1 must ensure that their files comply with Central 1 s AFT file specifications. These specifications are based on CPA Standard 005, Standards for the Exchange

More information

USA Debit EMV Test Plan. Version 1.30

USA Debit EMV Test Plan. Version 1.30 USA Debit EMV Test Plan.30 June 2018 Disclaimer Information provided in this document describes capabilities available at the time of developing and delivering this document and the associated test cards

More information

Business ebanking ACH Origination Services (includes ACH Uploads)

Business ebanking ACH Origination Services (includes ACH Uploads) Business ebanking ACH Origination Services (includes ACH Uploads) This guide instructs users how to originate ACH Payments and Collections though Templates. Contact Business Client Services for assistance

More information

QR Code Specification for Payment Systems (EMV QRCPS)

QR Code Specification for Payment Systems (EMV QRCPS) EMV QR Code Specification for Payment Systems (EMV QRCPS) Merchant-Presented Mode Version 1.0 July 2017 Legal Notice The EMV Specifications are provided AS IS without warranties of any kind, and EMVCo

More information

PayWay. MTS File Format Specification

PayWay. MTS File Format Specification PayWay MTS File Format Specification Version 1.1 4 Feb 2016 Document History Date Version 27 Sep 2010 1.0 Initial Version 4 Feb 2016 1.1 Added TEST as valid value for Merchant Id Page 2 Table of Contents

More information

Nigeria Central Switch Interface Specifications ISO 8583 (1987)

Nigeria Central Switch Interface Specifications ISO 8583 (1987) Nigeria Central Switch Interface Specifications ISO 8583 (1987) Prepared by: Nigeria Inter Bank Settlement System (NIBSS) Version: 1.1 September 12, 2014 Page 1 of 64 Document Control File Name: NIBSS

More information

PayWay. Cardlink File Format Specification

PayWay. Cardlink File Format Specification PayWay Cardlink File Format Specification Version 1.2 4 Feb 2016 Document History Date Version 27 Sep 2010 1.0 Initial Version 20 Feb 2012 1.1 Fixed error in Value Flag specification 3 Feb 2016 1.2 Added

More information

Online Banking Wire Transfer Enrollment

Online Banking Wire Transfer Enrollment Online Banking Wire Transfer Enrollment Revised 9/2016 Page 1 Overview Wire Transfers (also referred to as Wire Transfer Payments) are a trusted instrument for transferring funds quickly and conveniently

More information

Global Prepaid Card Market with Focus on The United States ( ) April 2016

Global Prepaid Card Market with Focus on The United States ( ) April 2016 Global Prepaid Card Market with Focus on The United States (2016-2020) April 2016 Global Prepaid Card Market Report Scope of the Report The report titled Global Prepaid Card Market with Focus on The United

More information

Implementation guide. Confirmation of receipt in Handelsbanken CSV format

Implementation guide. Confirmation of receipt in Handelsbanken CSV format Confirmation of receipt in Handelsbanken CSV format Version 1.1.0 Publishing date 7 January 2017 Table of contents 1 INTRODUCTION... 3 1.1 HISTORY... 3 2 INFORMATION ABOUT THE SERVICE... 4 2.1 PARTIES...

More information

NAB TRANSACT. Direct Post v2.1.2 Integration Guide

NAB TRANSACT. Direct Post v2.1.2 Integration Guide NAB TRANSACT Direct Post v2.1.2 Integration Guide CONTENTS 1 Introduction 4 1.1 What is Direct Post? 4 1.2 Requirements for Implementation 4 1.2.1 Public Test Account Details 4 1.3 Card Types Accepted

More information

JR/T Translated English of Chinese Standard: JR/T

JR/T Translated English of Chinese Standard: JR/T Translated English of Chinese Standard: JR/T0055.2-2009 www.chinesestandard.net Buy True-PDF Auto-delivery. Sales@ChineseStandard.net JR FINANCIAL INDUSTRY STANDARD OF THE PEOPLE S REPUBLIC OF CHINA ICS

More information

Business e-banking Wires User Guide

Business e-banking Wires User Guide User Guide Business e-banking User Guide Tables of Contents Entering a One Time Wire Transfer 2 Deleting a Wire Transfer 5 Add Wire Template...8 Wire Money via Templates...12 Wire Money via Multiple Templates.....15

More information

Chapter 2 Section 2.3

Chapter 2 Section 2.3 TRICARE Encounter Data (TED) Chapter 2 Section 2.3 Revision: ELEMENT NAME: BATCH/VOUCHER CLISAP ACCOUNT NUMBER Header 0-025 1 Yes 1 PRIMARY PICTURE (FORMAT) Eight (8) alphanumeric characters. DEFINITION

More information

User Manual SL-DD-Collect-1 v2.0.9 (with v2010)

User Manual SL-DD-Collect-1 v2.0.9 (with v2010) User Manual SL-DD-Collect-1 v2.0.9 (with v2010) Objective A means to collect money from customer accounts via the Sales Ledger in Sage 200 using Direct Debit mechanisms provided by BACS systems, in a similar

More information

Regions Biller Xchange SM

Regions Biller Xchange SM Regions Biller Xchange SM A/R File Format Guide Regions Bank Member FDIC Revised 100615 Table of Contents 1. 0 Purpose... 6 2. 0 Acronyms and Definitions... 6 3. 0 Standard AR File Output... 6 3.1 Standard

More information

You are signing up to use the Middlesex Savings Bank Person to Person Service powered by Acculynk that allows you to send funds to another person.

You are signing up to use the Middlesex Savings Bank Person to Person Service powered by Acculynk that allows you to send funds to another person. Middlesex Bank Person to Person Service You are signing up to use the Middlesex Savings Bank Person to Person Service powered by Acculynk that allows you to send funds to another person. This Agreement

More information

EFT Overview Guide for Canada

EFT Overview Guide for Canada EFT Overview Guide for Canada 051812 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

PINACLE. ACH Bulk Load Tip Card USING ACH BULK LOAD STEP 1 - CREATING A NACHA FILE TREASURY MANAGEMENT

PINACLE. ACH Bulk Load Tip Card USING ACH BULK LOAD STEP 1 - CREATING A NACHA FILE TREASURY MANAGEMENT PINACLE ACH Bulk Load Tip Card USING ACH BULK LOAD The ACH Bulk Load feature allows you to import an ACH-formatted file. The ACH file that you import can contain one or more batches within the file. Each

More information

SFTP Batch Processor. Version 1.1

SFTP Batch Processor. Version 1.1 SFTP Batch Processor Version 1.1 CONTENTS 1. OVERVIEW... 2 2. SFTP CONNECTION... 3 3. INPUT FILE SPECIFICATION... 4 4. OUTPUT FILE SPECIFICATION... 6 5. BATCHING SCENARIOS... 8 7. MESSAGE FIELD PROPERTIES...

More information

XPERIENCE PROGRAM GENERAL QUESTIONS

XPERIENCE PROGRAM GENERAL QUESTIONS XPERIENCE PROGRAM GENERAL QUESTIONS CURRENT XPERIENCE PROGRAM? The current Xperience Program allows you to access an instant amount off of a qualifying treatment through a Mastercard Virtual Account. This

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

Experian Orion Extract

Experian Orion Extract PS_ORIO_EXTRACT Application 14864 Experian Orion Extract 2012-2015, Inc. or its affiliates. All rights reserved. This work is confidential and its use is strictly limited. Use is permitted only in accordance

More information

Version: 1.14 (b) Published: 1 August 2017

Version: 1.14 (b) Published: 1 August 2017 The purpose of this document is to provide the reader with an understanding of Dynamic Currency Conversion, and how it can be processed via Secure Trading s systems. Version: 1.14 (b) Published: 1 August

More information

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

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

More information

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

Getting Started With Transaction Express

Getting Started With Transaction Express Getting Started With Transaction Express Table of Contents Product Overview... 8 Welcome Email... 8 Merchant List... 8 Navigation... 9 Left Navigation Sections... 10 Password Security... 11 Change... 12

More information

Enterprise Payment Solutions. Rent Collector Portal. Rent Collector Portal Handbook

Enterprise Payment Solutions. Rent Collector Portal. Rent Collector Portal Handbook Enterprise Payment Solutions Rent Collector Portal Contents Contents... 2 I. Rent Collector Portal: Overview... 1 II. System Requirements... 1 III. Payments... 1 A.Making a One-Time (Pay Now) Donation/Payment

More information

PayTrace API Responses

PayTrace API Responses PayTrace API Responses Updated July 2011 The PayTrace API will always return a response when it receives a request. The response will either contain one or more Error messages or a Response value with

More information

Chapter 2 Section 2.3. Data Requirements - Header Record Data

Chapter 2 Section 2.3. Data Requirements - Header Record Data TRICARE Systems Manual 7950.2-M, February 1, 2008 TRICARE Encounter Data (TED) Chapter 2 Section 2.3 ELEMENT NAME: BATCH/VOUCHER CLISAP ACCOUNT NUMBER Header 0-025 1 Yes 1 PRIMARY PICTURE (FORMAT) Eight

More information

PAYMENT SYSTEM RESPONSE CODES

PAYMENT SYSTEM RESPONSE CODES PAYMENT SYSTEM RESPONSE CODES Bank s Text Text APPROVED 00 Approved 08 Honour with ID 11 Approved VIP (not used) 16 Approved, Update Track 3 (not used) 77 Approved (ANZ only) DECLINED 01 Refer to Card

More information

CANADIAN PAYMENTS ASSOCIATION ASSOCIATION CANADIENNE DES PAIEMENTS STANDARD 005 STANDARDS FOR THE EXCHANGE OF FINANCIAL DATA ON AFT FILES

CANADIAN PAYMENTS ASSOCIATION ASSOCIATION CANADIENNE DES PAIEMENTS STANDARD 005 STANDARDS FOR THE EXCHANGE OF FINANCIAL DATA ON AFT FILES CANADIAN PAYMENTS ASSOCIATION ASSOCIATION CANADIENNE DES PAIEMENTS STANDARD 005 STANDARDS FOR THE EXCHANGE OF FINANCIAL DATA ON AFT FILES 2017 CANADIAN PAYMENTS ASSOCIATION 2017 ASSOCIATION CANADIENNE

More information

COMPREHENSIVE LIST OF CASHLESS FAQs (GUESTS)

COMPREHENSIVE LIST OF CASHLESS FAQs (GUESTS) COMPREHENSIVE LIST OF CASHLESS FAQs (GUESTS) Credit Q. How do I top up my credit? You must create an account online and link your wristband to that account. You can also purchase your credit at the event

More information

Access Online. Navigation Basics. User Guide. Version 2.2 Cardholder and Program Administrator

Access Online. Navigation Basics. User Guide. Version 2.2 Cardholder and Program Administrator Access Online Navigation Basics User Guide Version 2.2 Cardholder and Program Administrator Contents Introduction... 1 Access Online Overview... 2 How We Gather and Manage Transaction Data in Access Online...

More information

P2P Instructions. 4. Select Person to Person

P2P Instructions. 4. Select Person to Person P2P Instructions 1. To utilize P2P, you need to first be enrolled in digital banking. Sign up at www.ucbankmn.com or enroll directly through our mobile app. (To learn more about digital banking see https://www.ucbankmn.com/eservices/online-banking.)

More information

CashPro Online. CashPro Online Quick Reference Guide Global Payments Using Bank-Defined Import File Formats

CashPro Online. CashPro Online Quick Reference Guide Global Payments Using Bank-Defined Import File Formats CashPro Online CashPro Online Quick Reference Guide Global Payments Using Bank-Defined Import File Formats CashPro Online Table of Contents About this Guide...3 Global Payments Comma-Separated Value Format...5

More information

Revised (10/17) Disbursements Imaging Transmission Toolkit

Revised (10/17) Disbursements Imaging Transmission Toolkit Revised (10/17) Disbursements Imaging Transmission Toolkit Copyright 2017 by KeyBank, N.A. Disbursement Image Transmission Toolkit All rights reserved. Reproduction of any part of this work beyond that

More information

Token System Integration & Protocol Guideline (Server & Direct)

Token System Integration & Protocol Guideline (Server & Direct) Token System Integration & Protocol Guideline (Server & Direct) Token System Protocol and Integration Guideline Content Welcome to the Sage Pay Token System integration... 2 General overview of how the

More information

Associated Connect. Reference Guide: Wire Import

Associated Connect. Reference Guide: Wire Import Associated Connect Reference Guide: Wire Import Page 2 of 10 Wire Import Note: This guide describes the steps to import wire information into Associated Connect for approval and release. If you are unsure

More information

Transaction Approval Process

Transaction Approval Process Access Online Transaction Approval Process User Guide Version 1.7 Cardholder Contents Introduction... 2 TAP Overview Flow Chart... 3 Cardholder Transaction Approval Process... 4 View-Only Access... 4 View

More information

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

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

More information

Consumer Banking User Guide. Transferring Funds

Consumer Banking User Guide. Transferring Funds Consumer Banking User Guide Transferring Funds Contents Managing transfers... 3 Transfer funds... 3 Viewing transfers... 4 Canceling a transfer... 4 Setting up external transfer accounts... 5 Adding an

More information

CARDSPOT USER GUIDE

CARDSPOT USER GUIDE 2017 2017 EML Payments Europe Limited. All rights reserved 8330 Ward Parkway, 4th Floor / Kansas City, MO 64114 / 800.755.5001 / www.emlpayments.com WELCOME TO CARDSPOT A Card Activation System Built to

More information

BFS VISA PREPAID CARDS FREQUENTLY ASKED QUESTIONS (FAQ S)

BFS VISA PREPAID CARDS FREQUENTLY ASKED QUESTIONS (FAQ S) BFS VISA PREPAID CARDS FREQUENTLY ASKED QUESTIONS (FAQ S) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 What is a BFS Visa Prepaid

More information

Wirecard CEE Integration Documentation

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

More information

How does the Prepaid Travel Card work?

How does the Prepaid Travel Card work? How does the Prepaid Travel Card work? The American Airlines Federal Credit Union ( Credit Union ) Prepaid Travel Card is a reloadable prepaid card, which means you can spend up to the value placed on

More information

ONLINE BANKING COMMERCIAL CASH MANAGEMENT ACH END-USER GUIDE

ONLINE BANKING COMMERCIAL CASH MANAGEMENT ACH END-USER GUIDE ONLINE BANKING COMMERCIAL CASH MANAGEMENT ACH END-USER GUIDE 1 P a g e TABLE OF CONTENTS CASH MANAGER ACH... 3 CREATE ACH BATCH... 4 ACH BATCH LIST... 4 MANUALLY CREATE AN ACH BATCH... 5 UPLOADING A NACHA

More information

You can use your PIN to complete your purchases at point-of-sale and for ATM transactions.

You can use your PIN to complete your purchases at point-of-sale and for ATM transactions. Westpac Business Prepaid MasterCard FAQs General Questions Is the Business Prepaid card a credit card? No. The Business Prepaid card has funds loaded on it by your employer. You can use the Business Prepaid

More information

TRANSACTIONS EXPORT API

TRANSACTIONS EXPORT API TRANSACTIONS EXPORT API Specifications Document ID: TransExportAPI Document Version: 1.3 Prepared for: CHARGE Anywhere 4041B Hadley Rd South Plainfield, NJ 07080 Phone + 1 (800) 211-1256 Fax + 1 (732)

More information

IMS Funds Receivables/ Transaction Processing User Guide

IMS Funds Receivables/ Transaction Processing User Guide IMS Funds Receivables/ Transaction Processing User Guide Financial & Membership Services Membership Management Services Version 4.0 Date of last update: 7/28/2010 Page 1 of 42 CONTENTS IMS Funds Receivables/Transaction

More information

Web Order Interface. How the Web Order Interface Works. Requirements for Your Web Site

Web Order Interface. How the Web Order Interface Works. Requirements for Your Web Site 27 The allows you to configure FTD Mercury so orders placed on your Web site are automatically converted to incoming orders in FTD Mercury. When an order from your Web site is sent to your email address,

More information

How to Search and Register for Continuing Education Programs

How to Search and Register for Continuing Education Programs How to Search and Register for Continuing Education Programs 1. Search for a course and/or create an account: Search for portion of title Drop down menu: - Browse Our Programs (view by title) - Events

More information

Batch Application. Batch Processing Application Operating Guide

Batch Application. Batch Processing Application Operating Guide Batch Application Batch Processing Application Operating Guide For use in conjunction with St.George Internet Payment Gateway Commercial in Confidence Merchant Services TABLE OF CONTENTS Introduction..............................................................

More information

Virtual Terminal User Guide

Virtual Terminal User Guide With the Clearent Virtual Terminal, merchants can accept credit card payments using the web browser on a computer, tablet, or mobile device. In this guide you will find step-by-step instructions for using

More information

UHIN STANDARDS COMMITTEE

UHIN STANDARDS COMMITTEE UHIN STANDARDS COMMITTEE Electronic Funds Transfer (EFT) and Automated Clearing House (ACH) Specification Version 2.1 Contents General... 1 Purpose... 1 Applicability... 1 Basic Concepts... 1 Detail...

More information

User s Guide. (Virtual Terminal Edition)

User s Guide. (Virtual Terminal Edition) User s Guide (Virtual Terminal Edition) Table of Contents Home Page... 4 Receivables Summary... 4 Past 30 Day Payment Summary... 4 Last 10 Customer Transactions... 4 View Payment Information... 4 Customers

More information

Registering a Card and Creating an Account on

Registering a Card and Creating an Account on Installing MyCardRules The MyCardRules App is available for both iphones and Android phones. To install MyCardRules: 1. Search for the app in the App Store or on Google Play. 2. Follow the instructions

More information

ATB Online Business General User. User Guide

ATB Online Business General User. User Guide ATB Online Business General User User Guide Contents Welcome to ATB Online Business 4 How to use this guide 5 Roles and entitlements in ATB Online Business 5 Administrator role 5 User roles 5 Limits 6

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

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

What are Bitmaps[edit]

What are Bitmaps[edit] What are Bitmaps[edit] Within ISO 8583, a bitmap is a field or subfield within a message which indicates which other data elements or data element subfields may be present elsewhere in a message. A message

More information

GLOBAL TRANSPORT VT & BATCH SOLUTION

GLOBAL TRANSPORT VT & BATCH SOLUTION GLOBAL TRANSPORT VT & BATCH SOLUTION USER GUIDE VERSION 17.2 NOVEMBER Global Payments Inc. 10 Glenlake Parkway, North Tower Atlanta, GA 30328-3447 COPYRIGHT 2007- GLOBAL PAYMENTS INC. ALL RIGHTS RESERVED.

More information

Batch Application. Batch Processing Application Operating Guide

Batch Application. Batch Processing Application Operating Guide Batch Application Batch Processing Application Operating Guide For use in conjunction with St.George Internet Payment Gateway Commercial in Confidence Merchant Services TABLE OF CONTENTS Introduction..............................................................

More information

Positive Pay // Business ebanking

Positive Pay // Business ebanking Positive Pay // Business ebanking Positive Pay Importing and Manage Exception Items About Positive Pay Positive Pay matches posted check information with check issue items like serial number and amount

More information

Baptist Financial Services

Baptist Financial Services Baptist Financial Services BFS Visa Prepaid PayCard FREQUENTLY ASKED QUESTIONS (FAQ S) Questions for Employers 1 What is a BFS Visa Prepaid PayCard? 2 How do I get a BFS Visa Prepaid PayCard? 3 How does

More information

Activating Gift Cards

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

More information

1- How do you register for an account with Alberta Transportation s Online Services?

1- How do you register for an account with Alberta Transportation s Online Services? 1- How do you register for an account with Alberta Transportation s Online Services? Go to Online Services Home Page at https://www.trans.gov.ab.ca/travisweblogin/redirect.htm and select Register under

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

Access Online. Payment Upload

Access Online. Payment Upload Access Online Payment Upload ABN AMRO Bank N.V. 2017 All rights reserved. Apart from those exceptions stipulated in or by virtue of the 1912 Copyright Law, no part of this publication may be reproduced

More information

Bulk Interac e-transfers User Guide. User Guide Bulk Interac e-transfers 1

Bulk Interac e-transfers User Guide. User Guide Bulk Interac e-transfers 1 Bulk Interac e-transfers User Guide User Guide Bulk Interac e-transfers 1 Overview This document provides information and instructions for Bulk Interac e-transfer service. Bulk Interac e-transfer service

More information

ACCOUNT SWITCH KIT. The Honesdale National Bank

ACCOUNT SWITCH KIT. The Honesdale National Bank ACCOUNT SWITCH KIT Move your accounts to quickly and easily. To get started, follow the steps below and submit the form online or through your local HNB Office. Step 1 Complete our New Account Information

More information

QNB Bank-ONLINE AGREEMENT

QNB Bank-ONLINE AGREEMENT This is an Agreement between you and QNB Bank ("QNB"). It explains the rules of your electronic access to your accounts through QNB Online. By using QNB-Online, you accept all the terms and conditions

More information

Forthnet Mobile Platform - groupsms http interface v1.0 1 / 9

Forthnet Mobile Platform - groupsms http interface v1.0 1 / 9 Table of Contents Introduction... 2 Requirements... 2 Connecting to Forthnet Mobile Platform... 2 Message submission... 3 Client Request... 3 Parameters... 4 Parameter user... 4 Parameter pass... 4 Parameter

More information

API Documentation. Release Version 1 Beta

API Documentation. Release Version 1 Beta API Documentation Release Version 1 Beta Document Version Control Version Date Updated Comment 0.1 April 1, 2016 Initialize document 1 Release version PROMOTEXTER V3 BETA - API Documentation 1 Table of

More information

Blackbaud Merchant Services Web Portal Guide

Blackbaud Merchant Services Web Portal Guide Blackbaud Merchant Services Web Portal Guide 10/09/2017 Blackbaud Merchant Services 4.0 Blackbaud Merchant Services Web Portal Guide US 2016 Blackbaud, Inc. This publication, or any part thereof, may not

More information

Attached Instructions Interface File Layout

Attached Instructions Interface File Layout Attached Instructions Interface File Layout Bank of New Zealand PC Business Banking This document is prepared by the Bank of New Zealand to assist PC Business Banking users interface their systems to PC

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

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

ProPay API Appendix Response Values and Simulated Responses Version

ProPay API Appendix Response Values and Simulated Responses Version ProPay API Appendix Response Values and Simulated Responses Version 10.17.0 Contents 1.0 RESERVED VALUES FOR TEST ENVIRONMENT SIMULATED PROCESSING......2 1.1 Reserved Card Numbers....2 1.2 Reserved ACH

More information

File Format Specification. Self-Generation Incentive Program. PDP Data Management New Functionality. Version 1.01

File Format Specification. Self-Generation Incentive Program. PDP Data Management New Functionality. Version 1.01 File Format Specification Self-Generation Incentive Program PDP Data Management New Functionality Version 1.01 Prepared by: Aimee Beasley Tim O Keefe Energy Solutions: SGIP Online Database System Implementers

More information

O N L I N E B A N K I N G C A S H M A N A G E M E N T End-User Guide

O N L I N E B A N K I N G C A S H M A N A G E M E N T End-User Guide ONLINE BANKING CASH MANAGEMENT End-User Guide TABLE OF CONTENTS LogIn Process...1 Company Login... 1 Cash User Login... 3 Cash Management User Single Sign On... 4 Navigation...5 Account Listing Page...6

More information

Expense Pay: Expense Pay Extract

Expense Pay: Expense Pay Extract Expense Pay: Expense Pay Extract Specification Applies to these SAP Concur solutions: Expense Professional/Premium edition Standard edition Travel Professional/Premium edition Standard edition Invoice

More information

Canadian Human-Computer Communications Society

Canadian Human-Computer Communications Society Graphics Interface 2006 Release Form Canadian Human-Computer Communications Society This form must be completed and signed by the contact author of every accepted paper that is to appear in the proceedings.

More information

Business Online Banking User Guide

Business Online Banking User Guide Business Online Banking User Guide Table of Contents 1. WELCOME!... 3 1A. TYPES OF ACTIVITIES 3 1B. GETTING STARTED 3 1C. IF YOU NEED HELP 3 2. TRANSACTION ACTIVITY... 4 2A. ACCESSING YOUR BUSINESS ACCOUNTS

More information

FedACH Risk Origination Monitoring Service

FedACH Risk Origination Monitoring Service FedACH Risk Origination Monitoring Service FedACH Risk Origination Monitoring Service Handbook September 2016 Table of Contents Introduction 2 Service Overview 2 Description 2 Service Feature Examples

More information

Marco Polo Card User Guide

Marco Polo Card User Guide Marco Polo Card User Guide Catalogue 1. About Marco Polo Card... 2 2. Card Usage... 3 Card Activation... 3 SMS Functions... 3 Card Login... 4 View Account Details... 5 View Transaction History... 6 Edit

More information

Revised (10/17) ACH Direct User Guide

Revised (10/17) ACH Direct User Guide Revised (10/17) ACH Direct User Guide Table of Contents Page 1. Introduction to ACH Direct 4 1.1 Overview of ACH Direct 4 1.2 Getting Started on ACH Direct 9 2. Corporate Administration 12 2.1 Viewing

More information

AUTHORISATION AND SETTLEMENT TECHNICAL SPECIFICATIONS

AUTHORISATION AND SETTLEMENT TECHNICAL SPECIFICATIONS AUTHORISATION AND SETTLEMENT TECHNICAL SPECIFICATIONS VERSION 1.4 OCTOBER 2017 The Authorisation And Settlement Technical Specifications contains information proprietary to Global Payments. No part of

More information

Labor Ledger Correction Process (LLCP)

Labor Ledger Correction Process (LLCP) Labor Distribution Module Labor Ledger Correction Process (LLCP) The Labor Ledger Correction Process (LLCP) document is used by central administration to correct errors that occur during Labor Ledger processing.

More information

ACH ORIGINATION USER GUIDE May 17, 2017

ACH ORIGINATION USER GUIDE May 17, 2017 ACH ORIGINATION USER GUIDE May 17, 2017 1 Log In... 3 Create A Batch... 4 NACHA File Upload... 5 NACHA File Format... 5 Manual Creation... 10 Import Option... 12 Establish Import Layout... 12 Import Transactions

More information

Contribution Notice of Deposit Upload File Specification

Contribution Notice of Deposit Upload File Specification Contribution Notice of Deposit Upload File Specification General Description Notations Used File Naming Convention Header Record Description Notice of Contribution Deposit Detail Record Description Allocation

More information

Business ebanking Reference Guide

Business ebanking Reference Guide Business ebanking Reference Guide Positive Pay bankwithunited.com POSITIVE PAY About Positive Pay Positive Pay helps to prevent check fraud by allowing company users to examine questionable checks and

More information

Classification: Public ANZ TRANSACTIVE GLOBAL USER GUIDE

Classification: Public ANZ TRANSACTIVE GLOBAL USER GUIDE Classification: Public ANZ TRANSACTIVE GLOBAL USER GUIDE 03 2015 CONTENTS PURPOSE 3 Users in ANZ Transactive Global 4 Function Roles and Data Roles 4 GETTING STARTED IN ANZ TRANSACTIVE GLOBAL 5 ANZ Transactive

More information

Wire & Internal Transfers

Wire & Internal Transfers Wire & Internal Transfers USER GUIDE Transfer funds easily and securely. Convenience. Transfer money between accounts at Union Bank and different banks domestically and internationally. Ease. Say goodbye

More information

Getting Started with Online Payments

Getting Started with Online Payments Getting Started with Online Payments Getting Started... 2 Steps for the Online Payment Process... 2 Step 1 Customer Visits Web Site... 2 Step 2 Redirected to Payment Center... 2 Step 3 Status Determined...

More information

Payment Solutions MyCardRules. MyCardRules Mobile App. User Guide. Release 3.1

Payment Solutions MyCardRules. MyCardRules Mobile App. User Guide. Release 3.1 Payment Solutions November 27, 2017 Installing MyCardRules... 2 Registering a Card and Creating an Account on MyCardRules... 2 Logging In to MyCardRules... 2 Registering a Card... 3 Creating an Account...

More information