GreenByPhone.com Report API Version 1.9

Size: px
Start display at page:

Download "GreenByPhone.com Report API Version 1.9"

Transcription

1 Report API Version 1.9 (HTTP POST, Soap 1.1, Soap 1.2) Green Payment Processing,

2 REPORT API TABLE OF CONTENTS Introduction... 4 General Information... 4 Service Protocols Supported... 4 SOAP vs. POST/GET... 4 Our Gateway Web Service Address... 4 Message Encryption and Authentication... 5 Web Methods... 5 Testing Web Methods... 6 Web Service Common Input Fields... 6 Authentication Input Fields... 6 Output Specification Input Fields... 7 Check Status Results... 8 Check Status Results Output Fields... 9 Un-Processed Check reports Un-Processed Check Reports Input Un-Processed Check Reports Input Fields Un-Processed Check Reports Ouput Search Function Reports Search Function Reports Ouput SearchCheckDate Input SearchCheckDate Input Fields SearchCheckMemo Input SearchCheckMemo Input Fields SearchCheckNumber Input SearchCheckNumber Input Fields Page 2

3 SearchCheck_ID Input SearchCheck_ID Input Fields History Details reports History Details Reports Input History Details Reports Input Fields History Details Reports Ouput History Reports History Reports Input History Reports Input Fields History Reports Ouput History Reports Output Fields Result Codes Table Verify Result Codes Table... Error! Bookmark not defined. Page 3

4 INTRODUCTION Green By Phone s Report API v1.1 contains methods for reporting and searching on the Green By Phone system. GENERAL INFORMATION The Report API allows for complete integration of your application(s) into our real-time check entry system. The API is a.net web service written entirely in VB managed code and exposes all of the custom classes that you will need for calling its methods and interpreting the responses. The web service resides on our gateway with 1024-Bit encryption via SSL. SERVICE PROTOCOLS SUPPORTED HTTP POST/GET, SOAP 1.1 and SOAP 1.2 are all supported by the system. The choice is left up to your application development team. SOAP VS. POST/GET Originally, SOAP was the acronym for Simple Object Access Protocol. However, recently it has also been known to stand for Service Oriented Architecture Protocol. Either way, SOAP is a protocol for exchanging XML-based messages over computer networks, normally using HTTP or HTTPS. SOAP forms the foundation layer of the Web Services stack, providing a basic messaging framework in which more abstract layers can be built upon. SOAP messages transferred over HTTPS works well with firewalls and is the advocated WS-I method to provide web service security. OUR GATEWAY WEB SERVICE ADDRESS The web service is hosted at the following address: Page 4

5 MESSAGE ENCRYPTION AND AUTHENTICATION The SSL protocol allows applications to communicate across a network in a way designed to prevent eavesdropping, tampering, and message forgery. SSL provides endpoint authentication and communications privacy over the Internet using cryptography. Typically, only the server is authenticated (i.e., its identity is ensured) while the client remains unauthenticated; this means that the end user (be that a person, or an application such as a web browser), can be sure with whom they are "talking". When any method is called, the client must send its Client ID and the appropriate API Service Password along with all of the other input parameters specific to the method. This authorizes use of the method by validating that the password matches a currently active Client ID. WEB METHODS We support several different web methods that will allow you to select check information based on your needs. The methods fall in to three groups: Open Checks, Search Functions, and History Reports and History Details.. Un-Processed (Open) Checks UnProcessedChecks UnProcessedChecksFuture UnProcessedChecksRecurring UnProcessedChecksRiskyBad UnProcessedChecksUnVerified UnProcessedChecksBillPay UnProcessedChecksRefunds Search Function Reports SearchCheckAmount SearchCheckDate SearchCheckMemo SearchCheckNumber SearchCheck_ID History Details HistoryChecksDetails HistoryRejectedChecksDetails HistoryRefundChecksDetails HistoryBillPayChecksDetails History Reports HistoryChecks HistoryRejectedChecks HistoryRefundChecks HistoryBillPayChecks Page 5

6 TESTING WEB METHODS For any of the web methods, you can test them online whenever you like. Simply go to the Report.asmx page, select the method and a method description will be displayed with a test input form (see below). This is a live test page! Simply enter the data that your system will attempt to enter and you will get live results back; including the creation of live checks and invoices, so be careful. WEB SERVICE COMMON INPUT FIELDS All web methods share 4 common input fields. Two of them are for authentication: Client_ID and API Password. The other two are changing output specification: x_delim_data and x_delim_char. AUTHENTICATION INPUT FIELDS < x_delim_data>string</ x_delim_data> < x_delim_char>string</ x_delim_char > Client_ID* - Numeric Client ID assigned by the system. Page 6

7 ApiPassword* - API password assigned by the system (this is not the regular client password used by the web interface. Both authentication input fields are required (*). These are not the regular client password used for the web interface. They are only available through customer service. OUTPUT SPECIFICATION INPUT FIELDS < x_delim_data>string</ x_delim_data> < x_delim_char>string</ x_delim_char > x_delim_data determines whether or not output is delivered as delimited text data. x_delim_char If delimited data is requested, this field allows the user to specify the character used to delimit the data. Since we are using XML Web Services, all output defaults to XML. However, many legacy systems are still use older character delimited text protocol. Setting x_delim_data to TRUE, forces the system output to delimited text. Accepted values are true, T, yes, Y, 1, on ; and is not case sensitive. The default value if left blank is FALSE. If the x_delim_data to TRUE, the default value for x_delim_char is the pipe character ( ). Other common values are the comma (,) or the tilde (~) characters. Input of: x_delim_data=&x_delim_char= Results in: <ReturnResult><value1>1</value1><value2>$2.00</value2><value3>3.0%</value3></ReturnResult> Input of: x_delim_data=on&x_delim_char= Results in: 1 $ % Input of: x_delim_data=true&x_delim_char=, Results in: 1,$2.00,3.0% Note: if delimited text is selected and there is more than one record to be returned, the system delimits the records with Carriage Return / Line Feed characters. In other words, each record will be on a separate line of text. Page 7

8 CHECK STATUS RESULTS Most of the methods in the Report API return an array of Status Results. Each Status Result contains the status of one check, or one Status result that indicates that no checks were found. <ArrayOfStatusResult> <StatusResult> <Result>string</Result> <ResultDescription>string</ResultDescription> <Check_ID>string</Check_ID> <CheckType>string</CheckType> <CheckMemo>string</CheckMemo> <CheckNumber>string</CheckNumber> <CheckAmount>string</CheckAmount> <CheckDate>string</CheckDate> <CreateDate>string</CreateDate> <VerifyResult>string</VerifyResult> <VerifyResultDescription>string</VerifyResultDescription> <VerifyResultPasses>boolean</VerifyResultPasses> <VerifyResultOverridable>boolean</VerifyResultOverridable> <VerifyResultOverriden>boolean</VerifyResultOverriden> <VerifyResultReSubmitable>boolean</VerifyResultReSubmitable> <ProcessDate>string</ProcessDate> <CheckRejectType>string</CheckRejectType> <RejectAmount>string</RejectAmount> <RejectDate>string</RejectDate> <RefundCheck_ID>string</RefundCheck_ID> <Deleted>boolean</Deleted> </StatusResult> <StatusResult> Next status result for next check.. <StatusResult> </StatusResult> </ArrayOfStatusResult> Page 8

9 CHECK STATUS RESULTS OUTPUT FIELDS Result - The numeric Result Code. A Result Code of 0 means that the input was accepted into the System. All other codes indicate that the input not accepted by the system. See the Result Codes Table on page 22. ResultDescription A text description of the Result field from above. **Note: It is possible to have no checks returned for a search or report even though the input format was correct. In this case the Result=0 and the ResultDescription will be No Data For Report. Check_ID Unique record number for the check in the system. CheckType Type of check. Ex: Normal check, CP Button (website button), CP Invoice, Bill Pay Check. CheckMemo Check memo that you entered on the check. CheckNumber Check number assigned to the check. CheckAmount Check amount that you entered on the check. CheckDate Check date that you entered on the check. CreateDate System date when the check was created. VerifyResult Returns the verification code for the check. VerifyResultDescription - The text description of the code above. VerifyResultPasses Boolean (true or false) indicates whether the verification passed or not. VerifyResultOverridable Boolean (true or false) indicates if VerifyResultPasses=False, whether the verification can be overridden or not. VerifyResultOverriden Boolean (true or false) indicates whether the verification was already overridden. VerifyResultReSubmitable Boolean (true or false) indicates if VerifyResultPasses=False, whether the check can be re-submitted or not. ProcessDate The date/time the check was processed. CheckRejectType This is the post deposit reject (returned item) information. Not Rejected means that the item has not yet been rejected. Rejected values include: NSF, Altered Item, UFH, Stop Payment, Closed Account, etc. RejectAmount If Rejected, this will contain the amount or rejected funds(check amount) otherwise ot will be RejectDate Date of reject or blank. RefundCheck_ID If this check was refunded, this is the Check_ID of the refund checked, otherwise 0. Deleted Boolean (true or false) indicates whether the check was deleted or not.. Page 9

10 UN-PROCESSED CHECK REPORTS There are seven Up-Processed Check reports. Un-Processed checks are checks that have not yet been processed by the system. Each of these reports has the same inputs and outputs. Un-Processed (Open) Checks UnProcessedChecks All open in-coming checks (checks coming to you) that are to be processed at the next system process time. UnProcessedChecksFuture All open in-coming checks (checks coming to you) that are to be processed any time in the future. UnProcessedChecksRecurring All open in-coming checks (checks coming to you) that are Recurring checks. UnProcessedChecksRiskyBad All open in-coming checks (checks coming to you) that will not be processed due to a negative verification code of some kind. UnProcessedChecksUnVerified All open in-coming checks (checks coming to you) that have not yet been verified (this can happen if the checks are input in Batch Verification mode, but as the system completes the verifications these checks will move into one of the other reports. UnProcessedChecksRefunds All open out-going refund checks (checks going from you) that are to be processed at the next system process time. UnProcessedChecksBillPay All open out-going Bill-Pay checks (checks going from you) that are to be processed at the next system process time. UN-PROCESSED CHECK REPORTS INPUT <UnProcessedChecks> <Client_ID>string</Client_ID> <ApiPassword>string</ApiPassword> <x_delim_data>string</x_delim_data> <x_delim_char>string</x_delim_char> </UnProcessedChecks> Input is simple, just authentication and output specification. Page 10

11 UN-PROCESSED CHECK REPORTS INPUT FIELDS Input fields with red asterisk (*) are required. Client_ID* - See section on Authentication Input Fields on page 6. ApiPassword* - See section on Authentication Input Fields on page 6. x_delim_data - See section on Output Specification Input Fields on page 7. x_delim_char - See section on Output Specification Input Fields on page 7. UN-PROCESSED CHECK REPORTS OUPUT Output is an array of Check StatusResult records see page 8 for details. If there is incorrect data input (bad ID, password, etc) the system will return a single StatusResult with a Result code other than 0. The ResultDescription will contain the text description of the failure. If there is correct data input, but there is just no data (ex: no open check in the system at this time) the system will return a single StatusResult with a Result code of 0. The ResultDescription will contain "No Data For Report". If there is correct data input, but there is data the system will return a StatusResult for each record returned for the report. Each record will have a Result code of 0 and the ResultDescription will contain the search request description. Page 11

12 SEARCH FUNCTION REPORTS There are five Search reports. Un-Processed checks are checks that have not yet been processed by the system. Each of these reports has the similar inputs and the same output format. Search Function Reports SearchCheckAmount Search All checks (Open, Processed, etc) by Check Amount. SearchCheckDate Search All checks (Open, Processed, etc) by Check Date. SearchCheckMemo Search All checks (Open, Processed, etc) by Check Memo. SearchCheckNumber Search All checks (Open, Processed, etc) by Check Number. SearchCheck_ID Search All checks (Open, Processed, etc) by Check ID. SEARCH FUNCTION REPORTS OUPUT All of the Search Function Reports share the same output specification: Output is an array of Check StatusResult records see page 8 for details. If there is incorrect data input (bad ID, password, etc) the system will return a single StatusResult with a Result code other than 0. The ResultDescription will contain the text description of the failure. If there is correct data input, but there is just no data (ex: no open check in the system at this time) the system will return a single StatusResult with a Result code of 0. The ResultDescription will contain "No Data For Report". If there is correct data input, but there is data the system will return a StatusResult for each record returned for the report. Each record will have a Result code of 0 and the ResultDescription will contain the search request description. Page 12

13 SEARCHCHECKDATE INPUT <SearchCheckDate> <Client_ID>string</Client_ID> <ApiPassword>string</ApiPassword> <CheckDate>string</CheckDate> <x_delim_data>string</x_delim_data> <x_delim_char>string</x_delim_char> </SearchCheckDate> SEARCHCHECKDATE INPUT FIELDS Input fields with red asterisk (*) are required. Client_ID* - See section on Authentication Input Fields on page 6. ApiPassword* - See section on Authentication Input Fields on page 6. CheckDate* - The CheckDate for the search. x_delim_data - See section on Output Specification Input Fields on page 7. x_delim_char - See section on Output Specification Input Fields on page 7. Page 13

14 SEARCHCHECKMEMO INPUT <SearchCheckMemo> <Client_ID>string</Client_ID> <ApiPassword>string</ApiPassword> <CheckMemo>string</CheckMemo> <x_delim_data>string</x_delim_data> <x_delim_char>string</x_delim_char> </SearchCheckMemo> SEARCHCHECKMEMO INPUT FIELDS Input fields with red asterisk (*) are required. Client_ID* - See section on Authentication Input Fields on page 6. ApiPassword* - See section on Authentication Input Fields on page 6. CheckMemo* - The CheckMemo for the search. x_delim_data - See section on Output Specification Input Fields on page 7. x_delim_char - See section on Output Specification Input Fields on page 7. Page 14

15 SEARCHCHECKNUMBER INPUT <SearchCheckNumber> <Client_ID>string</Client_ID> <ApiPassword>string</ApiPassword> <CheckNumber>string</CheckNumber> <x_delim_data>string</x_delim_data> <x_delim_char>string</x_delim_char> </SearchCheckNumber> SEARCHCHECKNUMBER INPUT FIELDS Input fields with red asterisk (*) are required. Client_ID* - See section on Authentication Input Fields on page 6. ApiPassword* - See section on Authentication Input Fields on page 6. CheckNumber* - The CheckNumber for the search. x_delim_data - See section on Output Specification Input Fields on page 7. x_delim_char - See section on Output Specification Input Fields on page 7. Page 15

16 SEARCHCHECK_ID INPUT <SearchCheck_ID> <Client_ID>string</Client_ID> <ApiPassword>string</ApiPassword> <Check_ID>string</Check_ID> <x_delim_data>string</x_delim_data> <x_delim_char>string</x_delim_char> </SearchCheck_ID> SEARCHCHECK_ID INPUT FIELDS Input fields with red asterisk (*) are required. Client_ID* - See section on Authentication Input Fields on page 6. ApiPassword* - See section on Authentication Input Fields on page 6. Check_ID* - The Check_ID for the search. x_delim_data - See section on Output Specification Input Fields on page 7. x_delim_char - See section on Output Specification Input Fields on page 7. Page 16

17 HISTORY DETAILS REPORTS There are four HistoryDetails reports. Each provides the details for a type of processed check that were processed at a specific ProcessTime. If no ProcessTime is provided (left blank), the most current ProcessTime in the system is used. Each HistoryDetails report has a corresponding HistoryReport see page 19. HistoryReports provide summaries of the process dates. Each of these reports has the same inputs and outputs. History Details HistoryChecksDetails Returns all checks processed at a specific date/time. HistoryRejectedChecksDetails Returns all rejected checks processed at a specific date/time. HistoryRefundChecksDetails Returns all Refund checks processed at a specific date/time. HistoryBillPayChecksDetails Returns all Bill Pay checks processed at a specific date/time. HISTORY DETAILS REPORTS INPUT All HistoryDetails reports share the same inputs: <HistoryChecksDetails> <Client_ID>string</Client_ID> <ApiPassword>string</ApiPassword> <ProcessTime>string</ProcessTime> <x_delim_data>string</x_delim_data> <x_delim_char>string</x_delim_char> </HistoryChecksDetails> Page 17

18 HISTORY DETAILS REPORTS INPUT FIELDS Input fields with red asterisk (*) are required. Client_ID* - See section on Authentication Input Fields on page 6. ApiPassword* - See section on Authentication Input Fields on page 6. ProcessTime The time and date of the system processed the checks. If left blank, the system uses the last (most current) processing time. x_delim_data - See section on Output Specification Input Fields on page 7. x_delim_char - See section on Output Specification Input Fields on page 7. HISTORY DETAILS REPORTS OUPUT Output is an array of Check StatusResult records see page 8 for details. If there is incorrect data input (bad ID, password, etc) the system will return a single StatusResult with a Result code other than 0. The ResultDescription will contain the text description of the failure. If there is correct data input, but there is just no data (ex: no open check in the system at this time) the system will return a single StatusResult with a Result code of 0. The ResultDescription will contain "No Data For Report". If there is correct data input, but there is data the system will return a StatusResult for each record returned for the report. Each record will have a Result code of 0 and the ResultDescription will contain the search request description. Page 18

19 HISTORY REPORTS There are four HistoryReports. Each provides a summary report for checks processed during a specified date range. The date range is specified by the DateStart and DateEnd. If no DateStart is provided (left blank), a date of 90 days ago is used. If no DateEnd is provided (left blank), today s date is used. Each HistoryReport has a corresponding HistoryDetails report see page 17. HistoryDetails reports provide details for the process dates returned by the HistoryReports. Each of these reports has the same inputs and outputs. History Reports HistoryChecks Returns a summary of all checks processed in a date range. HistoryRejectedChecks Returns a summary of all rejected checks processed in a date range. HistoryRefundChecks Returns a summary of all Refund checks processed in a date range. HistoryBillPayChecks Returns a summary of all Bill Pay checks processed in a date range. HISTORY REPORTS INPUT All HistoryReports share the same inputs: <HistoryChecks> <Client_ID>string</Client_ID> <ApiPassword>string</ApiPassword> <DateStart>string</DateStart> <DateEnd>string</DateEnd> <x_delim_data>string</x_delim_data> <x_delim_char>string</x_delim_char> </HistoryChecks> HISTORY REPORTS INPUT FIELDS Input fields with red asterisk (*) are required. Client_ID* - See section on Authentication Input Fields on page 6. ApiPassword* - See section on Authentication Input Fields on page 6. DateStart The beginning date for the date range to search. If left blank, the system uses today-90 days. DateEnd The end date for the date range to search. If left blank, the system uses today. x_delim_data - See section on Output Specification Input Fields on page 7. x_delim_char - See section on Output Specification Input Fields on page 7. Page 19

20 HISTORY REPORTS OUPUT Most of the methods in the Report API return an array of Status Results. Each Status Result contains the status of one check, or one Status result that indicates that no checks were found. <ArrayOfHistoryResult> <HistoryResult> <Result>string</Result> <ResultDescription>string</ResultDescription> <ProcessTime>string</ProcessTime> <Count>string</Count> <Total>string</Total> <Reject>string</Reject> <Net>string</Net> </HistoryResult> <HistoryResult> Next history result.. <HistoryResult> </HistoryResult> </ArrayOfHistoryResult> HISTORY REPORTS OUTPUT FIELDS Result - The numeric Result Code. A Result Code of 0 means that the input was accepted into the System. All other codes indicate that the input not accepted by the system. See the Result Codes Table on page 22. ResultDescription A text description of the Result field from above. **Note: It is possible to have no checks returned for a search or report even though the input format was correct. In this case the Result=0 and the ResultDescription will be No Data For Report. ProcessTime The System date and time that the checks were processed. Count Number of checks processed. Total Total amount of the Check Amounts for the checks processed. Reject Total amount (if any) of the rejected Check Amounts for these checks. Net Net check total (Total-Reject). Page 20

21 If there is incorrect data input (bad ID, password, etc) the system will return a single HistoryResult with a Result code other than 0. The ResultDescription will contain the text description of the failure. If there is correct data input, but there is just no data (ex: no checks in the system that match the request data) the system will return a single HistoryResult with a Result code of 0. The ResultDescription will contain "No Data For Report". If there is correct data input, but there is data the system will return a HistoryResult for each record returned for the report. Each record will have a Result code of 0 and the ResultDescription will contain the search request description. Page 21

22 RESULT CODES TABLE Result ResultDescription 0 Report Name if there is data. 0 No Data For Report. 1 Client_ID NOT in Database. 2 Password Supplied Not Correct. 3 Client has been deleted. 4 Client Bank Account Not Verified. 5 Client Not Active. 6 Client is not a member of this application. 10 Missing SearchData value. 11 Invalid SearchData value (integer). 12 Invalid SearchData value (date). 13 Invalid SearchData value (decimal). 20 Invalid ProcessTime value. 30 Invalid DateStart value. 31 Invalid DateEnd value. 96 Invalid x_delim_data value. 97 Invalid x_delim_char value. Page 22

Online Bill Payment and Service Portal

Online Bill Payment and Service Portal Online Bill Payment and Service Portal is an internet portal for customers to view invoices, create payments and view or create service tickets over the web. With customers have a secure Internet portal

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

SpeedChex EasyLink API

SpeedChex EasyLink API SpeedChex EasyLink API Implementation Instructions Version 1.0 SpeedChex is an information capture and processing service that allows consumers to pay for goods or services over the Internet by check without

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

IUID Registry Application Programming Interface (API) Version 5.6. Software User s Manual (SUM)

IUID Registry Application Programming Interface (API) Version 5.6. Software User s Manual (SUM) IUID Registry Application Programming Interface (API) Version 5.6 Software User s Manual (SUM) Document Version 1.0 May 28, 2014 Prepared by: CACI 50 N Laura Street Jacksonville FL 32202 Prepared for:

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

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373)

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373) SPARROW Gateway Custom Payment Redirect Version 3.2.0 (Build 7373) Released September 2016 Revision History Date Revision Comments Author 2015 06 09 1.0 Initial document created Blinova Alexandra 2 Table

More information

Positive Pay. Quick Start Set-up Guide

Positive Pay. Quick Start Set-up Guide Positive Pay Quick Start Set-up Guide 1-2-3 EASY STEPS TO FRAUD PROTECTION The following information will help you get up and running with Positive Pay quickly and easily. With Positive Pay, you provide

More information

1. Enter your site-account number (found at the top of your statement) and your 5-digit zip code and click Validate.

1. Enter your site-account number (found at the top of your statement) and your 5-digit zip code and click Validate. Follow these step-by-step instructions to enroll, login and make payments through e-bill express. You can also make a one-time payment without logging in; scroll down to the To Make a Payment Without Logging

More information

CyberSource Global Payment Management

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

More information

Mobile Banking App User s Guide

Mobile Banking App User s Guide Mobile Banking App User s Guide Enrollment Enroll Using Online Banking 1. Log in to your Online Banking account at easternmichiganbank.com. 2. Go to Options > Mobile Settings > Web Mobile Settings. 3.

More information

The SpeedChex Web Service API for Merchants ECheck Transaction Commands Version 1.0

The SpeedChex Web Service API for Merchants ECheck Transaction Commands Version 1.0 The SpeedChex Web Service API for Merchants ECheck Transaction Commands Version 1.0 Introduction The ECheck Transaction Commands detailed in this API give merchants a comprehensive platform for authorizing,

More information

Accident Compensation Commission. ICS Integrated Customer Services. Invoice API. Software specification

Accident Compensation Commission. ICS Integrated Customer Services. Invoice API. Software specification Accident Compensation Commission ICS Integrated Customer Services Invoice API Software specification Version 09 Draft for information, 05 December 2017 Invoice API Table of contents 1 Invoice API : overview...

More information

Business Online Banking & Bill Pay Guide to Getting Started

Business Online Banking & Bill Pay Guide to Getting Started Business Online Banking & Bill Pay Guide to Getting Started What s Inside Contents Security at Vectra Bank... 4 Getting Started Online... 5 Welcome to Vectra Bank Business Online Banking. Whether you re

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

This document and the API that it describes are deprecated.

This document and the API that it describes are deprecated. This document and the API that it describes are deprecated. Authorize.Net s legacy name-value-pair API is still supported, however it will not be updated, except for critical security updates. To learn

More information

Creating Domestic Wire Transfer Payments Reference Guide

Creating Domestic Wire Transfer Payments Reference Guide Creating Domestic Wire Transfer Payments Reference Guide Table of Contents Creating and Working with Domestic Wire Transfers 3 Overview 3 Creating a Freeform Payment or Template 3 Approving or Rejecting

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

CyberSource Business Center

CyberSource Business Center CyberSource Business Center CS3-609-06-16-09 Copyright 2009 Harris Connect, LLC. all rights reserved. Reproduction in any form without the express written consent of Harris Connect, LLC. is strictly prohibited

More information

Contents OVERVIEW... 3

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

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

Creating International Wire Transfer Payments Reference Guide

Creating International Wire Transfer Payments Reference Guide Creating International Wire Transfer Payments Reference Guide Table of Contents Creating and Working with International Wire Transfers 3 Overview 3 Creating a Freeform Payment or Template 3 Approving or

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

First Data Global Gateway SM Virtual Terminal User Manual

First Data Global Gateway SM Virtual Terminal User Manual First Data Global Gateway SM Virtual Terminal User Manual Version 1.0 2015 First Data Corporation. All Rights Reserved. All trademarks, service marks, and trade names referenced in this material are the

More information

Microsoft Architecting Microsoft Azure Solutions.

Microsoft Architecting Microsoft Azure Solutions. Microsoft 70-535 Architecting Microsoft Azure Solutions https://killexams.com/pass4sure/exam-detail/70-535 QUESTION: 106 Your organization has developed and deployed several Azure App Service Web and API

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

Needham Bank Business Online Banking

Needham Bank Business Online Banking Needham Bank Business Online Banking Published December 2017 Contents ACH & NB Business Online Banking Terminology... 2 Getting Started... 4 Participants... 5 Creating a Participant... 5 Updating a Participant...

More information

API Security Management SENTINET

API Security Management SENTINET API Security Management SENTINET Overview 1 Contents Introduction... 2 Security Models... 2 Authentication... 2 Authorization... 3 Security Mediation and Translation... 5 Bidirectional Security Management...

More information

Web Services Configuration Guide

Web Services Configuration Guide Web Services Configuration Guide Freezerworks 2017 PO Box 174 Mountlake Terrace, WA 98043 www.freezerworks.com support@freezerworks.com 425-673-1974 877-289-7960 U.S. Toll Free Freezerworks is a registered

More information

Authorize.net CIM - Magento 2 USER MANUAL MAGEDELIGHT.COM E:

Authorize.net CIM - Magento 2 USER MANUAL MAGEDELIGHT.COM E: Authorize.net CIM - Magento 2 USER MANUAL MAGEDELIGHT.COM E: SUPPORT@MAGEDELIGHT.COM License Key After successful installation of Authorize.net CIM extension by using the Magento setup, you are now required

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

Check Services vs. Payables Web Services sm

Check Services vs. Payables Web Services sm Comparison Guide The One Net to JPMorgan ACCESS Check Services vs. Payables Web Services sm This document compares The One Net Check Services to the JPMorgan ACCESS Payables Web Services (PWS) application.

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

Security We keep your security a priority

Security We keep your security a priority Welcome Welcome to Berkshire Bank s Business Solutions. With Business Solutions, you may access your accounts 24 hours a day, seven days a week anywhere an internet connection is available. This guide

More information

Personal Online Banking & Bill Pay. Guide to Getting Started

Personal Online Banking & Bill Pay. Guide to Getting Started Personal Online Banking & Bill Pay Guide to Getting Started What s Inside Contents Security at Vectra Bank... 4 Getting Started Online... 5 Welcome to Vectra Bank Online Banking. Whether you re at home,

More information

Body: JSON Message representing a Transaction object (See Transaction Objects for Details)

Body: JSON Message representing a Transaction object (See Transaction Objects for Details) Overview SixthCents API is REST based and exposes HTTP endpoints. The API has several URLs and all responses are standard HTTP codes so you easily know what the outcome of an operation was. Authentication

More information

Business Bill Pay User Guide

Business Bill Pay User Guide Business Bill Pay User Guide Convenience doesn t just happen 9 to 5, it works overtime. Business Bill Pay is designed to help small businesses manage their bills and account information. This user guide

More information

Positive Pay Quick Start Guide

Positive Pay Quick Start Guide Positive Pay Quick Start Guide Welcome to Positive Pay With Positive Pay, you provide us with information about the checks you write and we compare that information against the physical checks when they

More information

SMSCenter. SMSCenter API

SMSCenter. SMSCenter API www.smscenter.co.il SMSCenter Multi Messaging Software Server SMS / MMS / IVR / WAP Push SMSCenter API SMSCenter API The software described in this book is furnished under a license agreement and may be

More information

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS RESOLV EDI CONTROL User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS Copyright 2011-2016 by Achieve IT Solutions These materials are subject to change without notice. These materials are

More information

accessmoney Manager ACTION PAGES

accessmoney Manager ACTION PAGES accessmoney Manager ACTION PAGES 1 accessmoney Manager Action Pages accessmoney Manager Action Pages are quick reference pages that provide information for the major components of accessmoney Manger. Click

More information

Application Security through a Hacker s Eyes James Walden Northern Kentucky University

Application Security through a Hacker s Eyes James Walden Northern Kentucky University Application Security through a Hacker s Eyes James Walden Northern Kentucky University waldenj@nku.edu Why Do Hackers Target Web Apps? Attack Surface A system s attack surface consists of all of the ways

More information

ANCHORLINK ONLINE BANKING PERSONAL USER GUIDE Nov. 1, 2017

ANCHORLINK ONLINE BANKING PERSONAL USER GUIDE Nov. 1, 2017 ANCHORLINK ONLINE BANKING PERSONAL USER GUIDE Nov. 1, 2017 1 Welcome to AnchorLink Online Banking... 3 Sign Up Process... 3 Subsequent Log In... 6 Landing Page... 7 My Anchorlink... 7 Configure My Anchorlink...

More information

UMB Direct Account Transfers User Guide

UMB Direct Account Transfers User Guide UMB Direct Account Transfers User Guide Contents Preface... 1 Objectives... 1 Chapter 1... 2 Transfers Overview... 2 About Transfers... 2 Transfer Processing... 2 Executing Transfers in Real-Time... 2

More information

BUSINESS BANKING ONLINE. Deskside User Guide

BUSINESS BANKING ONLINE. Deskside User Guide BUSINESS BANKING ONLINE Deskside User Guide INTRODUCTION TO BUSINESS BANKING ONLINE Business Banking Online (BBOL) offers our business customers both large and small the tools and features needed to manage

More information

Configuring Vulnerability Assessment Devices

Configuring Vulnerability Assessment Devices CHAPTER 10 Revised: November 10, 2007 Vulnerability assessment (VA) devices provide MARS with valuable information about many of the possible targets of attacks and threats. They provide information useful

More information

Student- User manual

Student- User manual Student- User manual Link for checking result on portal in production system is given below: http://svkmepdbci.svkm.ac.in:50100/irj/portal Login ID: will be the 11 digit SAP Student Number allotted to

More information

Guide to Getting Started. Personal Online Banking & Bill Pay

Guide to Getting Started. Personal Online Banking & Bill Pay Guide to Getting Started Personal Online Banking & Bill Pay What s Inside Welcome to National Bank of Arizona s Online Banking. Whether you re at home, at work, or on the road, our online services are

More information

Magento Extension User Guide: Web Services Version 3.6.1

Magento Extension User Guide: Web Services Version 3.6.1 Version 3.6.1 This document explains how to install the official Secure Trading extension on your Magento store. Published: 3 August 2017 Table of Contents 1 Introduction... 3 1.1 Features... 3 1.2 Requirements...

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

Easthampton Savings Bank Online Business Banking User Guide

Easthampton Savings Bank Online Business Banking User Guide Easthampton Savings Bank Online Business Banking User Guide Page 1 of 100 Table of Contents SECURITY...6 PASSWORD TAB FUNCTIONALITY...6 SECURE DELIVERY TAB FUNCTIONALITY...9 CHALLENGE CODE TAB FUNCTIONALITY...10

More information

CyberSource Global Payment Management for Magento 2

CyberSource Global Payment Management for Magento 2 CyberSource Global Payment Management for Magento 2 User s Guide Version 2.0.3 January 2018 January 2018 CyberSource Global Payment Management for Magento 2.x 1 Contents Recent Changes... 5 1. Introduction:...

More information

B2B Portal User Guide

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

More information

ONLINE SPACE APPLICATION GUIDE Part I: Individual application Part II: Group application

ONLINE SPACE APPLICATION GUIDE Part I: Individual application Part II: Group application ONLINE SPACE APPLICATION GUIDE Part I: Individual application Part II: Group application Dated 4 May 2017 Save as Draft function The Save as Draft function allows exhibitors to save their application at

More information

Online Banking for Business WHOLESALE LOCKBOX IMAGING USER GUIDE

Online Banking for Business WHOLESALE LOCKBOX IMAGING USER GUIDE Online Banking for Business WHOLESALE LOCKBOX IMAGING USER GUIDE Contents Getting Started...1 Technical Requirements...1 Contact Us...1 Overview...2 Wholesale Lockbox Web Application... 2 Features... 2

More information

TED PRO Third Party Posting API

TED PRO Third Party Posting API TED PRO Third Party Posting API Based on ECC Firmware Revision R607 Table of Contents Introduction... 1 Activation... 1 Sample Activation XML... 2 Sample Activation Response XML... 2 Posting Data... 3

More information

HTTP Based Unified API

HTTP Based Unified API HTTP Based Unified API SMS GATEWAY Issue 5.0 June 2017 1 HTTP Based Unified API HTTP ACCESS MODEL INTRODUCTION The platform exposes a HTTP interface to its SMS Gateway. The SMS Gateway can be used for

More information

Datapower is both a security appliance & can provide a firewall mechanism to get into Systems of Record

Datapower is both a security appliance & can provide a firewall mechanism to get into Systems of Record 1 2 3 Datapower is both a security appliance & can provide a firewall mechanism to get into Systems of Record 5 White boxes show the access points for different kinds of security. That s what we will

More information

Vantiv ecommerce for Magento 2

Vantiv ecommerce for Magento 2 Vantiv ecommerce for Magento 2 User Guide Version 1.0.0 June 2017 Table of Content 1. Onboarding...3 2. Installation...3 3. Configuration...5 4. Nuances for each MOP...22 5. Checkout...23 6. Stored Payment

More information

AutomationDirect.com Order Import Feature

AutomationDirect.com Order Import Feature AutomationDirect.com Order Import Feature This document describes the requirements to upload a CSV or XML format order file from your system into our AutomationDirect.com E-commerce system to create an

More information

Traction API Reference Version Date Created. 23 March Page 1 of 106, Prepared 23 March 2009

Traction API Reference Version Date Created. 23 March Page 1 of 106, Prepared 23 March 2009 Traction API Reference Version 3.51 Date Created 23 March 2009 Page 1 of 106, Prepared 23 March 2009 Contents 1. Introduction to the Traction API...9 1.1 Overview...9 1.2 Supported Languages...9 1.2.1.NET

More information

Operator s Manual Version 5.4 MEMO FINANCIAL SERVICES, INC. BILL PAYMENTS TERMINAL VERSION OPERATOR S MANUAL

Operator s Manual Version 5.4 MEMO FINANCIAL SERVICES, INC. BILL PAYMENTS TERMINAL VERSION OPERATOR S MANUAL Operator s Manual Version 5.4 MEMO FINANCIAL SERVICES, INC. BILL PAYMENTS TERMINAL VERSION 5.1-5.4 OPERATOR S MANUAL MEMO Technical Support 800-864-5246 MEMO Financial Services Bill Payments Terminal Page

More information

Frequently Asked Questions

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

More information

1 Virtual Terminal Quick Reference Guide. Virtual Terminal Quick Reference Guide. Getting Started

1 Virtual Terminal Quick Reference Guide. Virtual Terminal Quick Reference Guide. Getting Started 1 Virtual Terminal Quick Reference Guide Virtual Terminal Quick Reference Guide Getting Started 2 Virtual Terminal Quick Reference Guide What you need Internet enabled laptop or computer Virtual Terminal

More information

Introduction & Basics! Technical Foundation! Authentication! Obtaining a token!... 4 Using the token! Working with notes!...

Introduction & Basics! Technical Foundation! Authentication! Obtaining a token!... 4 Using the token! Working with notes!... Simplenote API2 Documentation v2.1.3: (April 18, 2011). Recent documentation changes are listed on the last page. Contents Introduction & Basics!... 3 Technical Foundation!... 3 Authentication!... 4 Obtaining

More information

Real-Time Connectivity Specifications

Real-Time Connectivity Specifications Real-Time Connectivity Specifications United Concordia Companies, Inc. (UCCI) 2006 Contents 1. Real-Time Overview 2. Requirements 3. SOAP Messages 4. SOAP Faults 5. UCCI EDI WebServices Certificate 1.

More information

User Guide for Direct Post Method Direct Redirect

User Guide for Direct Post Method Direct Redirect User Guide for Direct Post Method Direct Redirect Version 4.0 Last Updated: 10/2/2017 Table of Contents Document Version... 4 Contact Information... 4 Direct Post Options... 5 Introduction... 6 1 Concept

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

Event Push SOAP Contract

Event Push SOAP Contract Event Push SOAP Contract Message Delivery Schedule Sertifi will attempt to deliver messages multiple times if the web service listener is down or is returning errors. The delivery schedule for all the

More information

Uploading Bills, Downloading Payments, and Automating the Process. Section 1: Uploading bills

Uploading Bills, Downloading Payments, and Automating the Process. Section 1: Uploading bills Uploading Bills, Downloading Payments, and Automating the Process This document describes uploading bills to Xpress-pay, downloading payments. There is no requirement for a bill to uploaded prior to payment

More information

Professional Editions Setup Guide

Professional Editions Setup Guide Professional Editions Setup Guide FOR TAX YEAR 2017 V 1 1 Table of Contents Click on any title to navigate directly to that section. Download and Install Download Installation File from Practice Manager

More information

Notices... Preface... List of Tables... ix. Chapter 1: Documentation Standards...11 Interface Terms Typographic Conventions...

Notices... Preface... List of Tables... ix. Chapter 1: Documentation Standards...11 Interface Terms Typographic Conventions... BillMax User Manual Contents iii Contents Notices... Preface... List of Tables... ix Chapter 1: Documentation Standards...11 Interface Terms... 12 Typographic Conventions... 12 Chapter 2: Concepts...13

More information

QuickStart Training Guide: The Accounting Review Role

QuickStart Training Guide: The Accounting Review Role Accounting Review Role Final Approval of Expense Reports If you are an Accountant who is using ExpensAble Corporate to make final approval of employees expense reports, this information is for you. This

More information

INTERPRETING INITIAL FEEDBACK AND FINAL VALIDATION REPORTS

INTERPRETING INITIAL FEEDBACK AND FINAL VALIDATION REPORTS 1 INTERPRETING INITIAL FEEDBACK AND FINAL VALIDATION REPORTS REPORT FORMATS...2 MDS INITIAL FEEDBACK REPORT...2 MDS FINAL VALIDATION REPORT FORMAT...3 RECORD TYPE DEFINITIONS...4 REPORT FIELD DESCRIPTIONS

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

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 For help, contact support@linkmobility.com The most up-to-date version of this document is available at http://www.linkmobility.com/developers/

More information

PHPKB API Reference Guide

PHPKB API Reference Guide PHPKB API Reference Guide KB Administrator Fri, Apr 9, 09 User Manual 96 0 This document provides details on how to use the API available in PHPKB knowledge base management software. It acts as a reference

More information

Recurring Payment Quick Reference Guide

Recurring Payment Quick Reference Guide H O M E O W N E R S A S S O C I A T I O N S E R V I C E S Recurring Payment Quick Reference Guide 1. Go to HOABankservices.com. www.hoabankservices.com 2. Click the Make Payment link. 3. Click in the Sign

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

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

OVERVIEW Feature Summary... 3 CONFIGURATION System Requirements... 4 ConnectWise Manage Configuration... 4

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

More information

Business Online Banking

Business Online Banking » Flagstar business Banking Business Online Banking Reference Guide Flagstar Bank Corporate Headquarters 5151 Corporate Drive Troy, MI 48098 (888) 324-4100 flagstar.com/business Member FDIC 1 Table of

More information

.NET Secure Coding for Client-Server Applications 4-Day hands on Course. Course Syllabus

.NET Secure Coding for Client-Server Applications 4-Day hands on Course. Course Syllabus .NET Secure Coding for Client-Server Applications 4-Day hands on Course Course Syllabus Course description.net Secure Coding for Client-Server Applications 4-Day hands on Course Secure programming is the

More information

E-Way Bill System User Manual for API Interface (Site-to-Site integration)

E-Way Bill System User Manual for API Interface (Site-to-Site integration) 2017 E-Way Bill System User Manual for API Interface (Site-to-Site integration) National Informatics Centre New Delhi No part of this document shall be reproduced without prior permission of National Informatics

More information

The following instructions are for Online Claiming with Medicare and Veterans Affairs.

The following instructions are for Online Claiming with Medicare and Veterans Affairs. Institutions Online Claiming and Batching The following instructions are for Online Claiming with Medicare and Veterans Affairs. Account Setup When creating an account to send through Online Claiming,

More information

QMerchant Manual. Version 14.0

QMerchant Manual. Version 14.0 1 QMerchant Manual QMerchant Manual Version 14.0 This document reflects version 14.0.0 of QMerchant. Some of the screenshots are just examples and may differ from the real product. QBAutomation is a trademark

More information

Client-Account Receivable

Client-Account Receivable Nexsure Training Manual - Accounting Client-Account Receivable In This Chapter Client Accounts Receivable Entity Definition Receive Payments from Clients Relating to Policies Allocation of Payment Leave

More information

Shopping Cart Certification Advanced Integration Method (AIM) Implementation Guide Card-Not-Present Transactions

Shopping Cart Certification Advanced Integration Method (AIM) Implementation Guide Card-Not-Present Transactions Advanced Integration Method (AIM) Implementation Guide Card-Not-Present Transactions Page 2 of 56 Revision History Date Brief Description of Changes 10.2002 Initial release 01.2003 Fixed x_bank_account_name

More information

Let us know what you d like to do:

Let us know what you d like to do: Thank you for registering your new Co-operative Energy online account. Your new online account has a fresh new look and brings home energy management right to your fingertips. Below you will find a guide

More information

e-invoicing on the e-prior Supplier Portal

e-invoicing on the e-prior Supplier Portal EUROPEAN COMMISSION DIRECTORATE-GENERAL INFORMATICS Information Systems Directorate e-invoicing on the e-prior Supplier Portal User Manual (full functionality) Version 1.40 Date: 15/12/2011 Author: Denis

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

API Security Management with Sentinet SENTINET

API Security Management with Sentinet SENTINET API Security Management with Sentinet SENTINET Overview 1 Contents Introduction... 2 Security Mediation and Translation... 3 Security Models... 3 Authentication... 4 Authorization... 5 Bidirectional Security

More information

eservices Integrated Capture Points Guide Web Service Capture Point

eservices Integrated Capture Points Guide Web Service Capture Point eservices Integrated Capture Points Guide Web Service Capture Point 3/30/2018 Contents 1 Web Service Capture Point 1.1 Common Aspects 1.2 Generating a Client 1.3 Web Service Capture Point Client Over Secure

More information

The Guide below is to help assist Users in navigating our Cash Management Online Banking

The Guide below is to help assist Users in navigating our Cash Management Online Banking The Guide below is to help assist Users in navigating our Cash Management Online Banking If you have questions please call or email our Cash Management Support Team at 1-844-213-5198 or CEN-CMOperations@my100bank.com

More information

N Touch Treasury. Getting Started

N Touch Treasury. Getting Started N Touch Treasury Getting Started Revised 12-15-17 TreasurySupport@NTouchBanking.com (833) 846-2699 How Do I Log into N Touch Treasury? You will be provided a Company ID and Login ID prior to logging in

More information

- 1 - Revision Date: 7/27/09

- 1 - Revision Date: 7/27/09 Deposit Checks QuickBooks Module Documentation... - 2 - Installation... - 2 - Initial Setup... - 5 - Granting Permission... - 5 - Setting Up the Gateway Credentials... - 7 - Processing Transactions...

More information

Web Robots Platform. Web Robots Chrome Extension. Web Robots Portal. Web Robots Cloud

Web Robots Platform. Web Robots Chrome Extension. Web Robots Portal. Web Robots Cloud Features 2016-10-14 Table of Contents Web Robots Platform... 3 Web Robots Chrome Extension... 3 Web Robots Portal...3 Web Robots Cloud... 4 Web Robots Functionality...4 Robot Data Extraction... 4 Robot

More information

USERS GUIDE. Revision 02

USERS GUIDE. Revision 02 USERS GUIDE Revision 0 06 I. TABLE OF CONTENTS... II. AVAILABLE SERVICES QUICK REFERENCE... 4 III. USEFUL SECURITY TIPS... 5. LOGIN AND NAVIGATION... 6.. The Login Screen... 6 Logging into Web Banking...

More information

Access-Plus Lockbox. Company End User's Manual

Access-Plus Lockbox. Company End User's Manual Access-Plus Lockbox Company End User's Manual Table of Contents Introduction Login 3 Single Lockbox 4 Multiple Lockboxes 4 Accessing Data & Images Viewing Data & Images 5 Intra-Day Transactions 6 Supporting

More information

Associated Connect. Reference Guide: Business User Entitlement

Associated Connect. Reference Guide: Business User Entitlement Associated Connect Reference Guide: Business User Entitlement User Entitlement This guide is designed for customers who access our Business Online Banking services through Associated Connect. Note: The

More information