Integration guide Rabo OmniKassa

Size: px
Start display at page:

Download "Integration guide Rabo OmniKassa"

Transcription

1 Integration guide Rabo OmniKassa 1

2 CONTENTS 1. Introduction Payment flows Protocol description POST fields the Data field syntax the Seal field syntax How to implement a payment? Payment request Fields of the payment request Example Error cases Payment response Manual notification Automatic notification Troubleshooting in case of not received responses Rabo OmniKassa Error management No Seal field in the response How to SEAL a MESSAGE? Why seal a message? Method used to seal a message Coding examples Java Php net How to TEST? Test ideal transaction Test Minitix transaction Test card transaction

3 6.4 Test acceptgiro/incasso/rembours transactions How to GO LIVE? Merchant identifiers Pre-live tests Production / go live Messages description Payment request Mandatory fields Optional fields Responses / Notifications (automatic and manual) Data dictionnary Format convention Fields description Currency codes & amounts Customer languages Payment means The Rabo OmniKassa response code ideal acceptance details MiniTix acceptance details Incasso, Acceptgiro and rembours acceptance details

4 1. INTRODUCTION This document explains exchanges between merchants site and the Rabo OmniKassa server, using the Rabo OmniKassa redirect connector s gateway. This connector aims to be as easy as possible to implement on merchant s side and consists of requests and responses made in the form of HTTP(S) posts to and from the Rabo OmniKassa payment server. Requirements Technical To develop a client for the redirect connector, you will need knowledge in one of the languages commonly used for web programming, such as Java, PHP or.net. Security The Payment platform is PCI DSS compliant (Payment Card Industry Data Security Standard) which represents a security standard defined by VISA and MASTERCARD. With the Rabo OmniKassa, the merchant doesn t need to know the PAN (Personal Account Number) used for payments. We are referring for example to the consumer s credit card number. The request and responses exchanged between the webshop and the payment server are secured via a shared secret key. The Secret key must be stored in a secure environment on the webshops website. In case of (possible) corruption of the secret key, the merchant has to call within the shortest delay the technical support team of Rabo OmniKassa to renew it. This team is reachable from Monday to Saturday between 8:00 AM and 8:00 PM and on Sunday between 8:00 AM and 4:00 PM calling

5 2. PAYMENT FLOWS The objective is to implement the 3 payment flows, exchanged by payment occurrence between the webshop and the payment server. Payment page on merchant s website 1: The customer proceeds to the payment(paymen t request) Rabo OmniKassa redirect connector gateway 2: The connector redirects the customer to the paypages (redirect) Rabo OmniKassa payment server paypage Return page on merchant s website Automatic response 3a: The customer returns to merchant webshop website (manual response) 3b: The connector sends a automatic response to merchant webshop website (On which the customer can choose his/her payment mean and enter the according bank information) Flow 1: Once the customer proceeds with the payment step starting from merchant website, (payment transaction), a payment request must be sent to the Rabo OmniKassa server, using the URL provided to the merchant for this purpose. The simplest way is to do this using an HTML FORM, but any other solution sending an HTTP POST is also suitable. Flow 2: Then the customer is redirected to the paypage of the Rabo OmniKassa payment server for performing the actual payment operation. When this step is completed, either successfully or resulting in an error, responses are sent from the payment server to the response URLs provided as parameters of the payment request. Flow 3: Payment step 3a: Manual response sent as HTTP(S) POSTs by the payment server to the normal return URL as provided in the payment request whenever the customer clicks on the return to merchant s website link on the paypage. Then customer should be redirected to the suitable page on merchant s website. Note that this only happens when customer clicks on related link, which is not mandatory or guaranteed. 5

6 Payment step3b: Automatic responses are always sent as HTTP(S) POSTs by the payment server to the automatic response URL provided in the payment request whenever the payment process is completed. Notice: In the case the payment operation did not succeed, the customer is redirected to an error page on which he/she can click on a link to return to the merchant s website. At this moment the transaction is considered as interrupted. If for instance, another payment mean is preferred, the whole payment transaction must be performed again starting from merchant s website. 6

7 3. PROTOCOL DESCRIPTION 3.1 POST FIELDS Three fields can be provided in the payment requests and the payment responses *. Data InterfaceVersion Seal Contains all the information of the transaction gathered in a single string as explained in Version of the connector s interface in use. Used to validate the integrity of the data. Computed from the Data field and secret key as explained in *All the fields are mandatory the Data field syntax The Data field value is built according to the following scheme: <field name>=<value name> <field name>=<value name> <field name>=<value name> All the fields needed for the transaction (see details in the data dictionary 9) must be put in the string. The field ordering doesn t matter. Example for a payment request: amount=55 currencycode=978 merchantid= normalreturnurl= transacti onreference= keyversion= the Seal field syntax The Seal field value is built by appending the secret key to the Data field value (see 3.1.1) and then getting the result s bytes as UTF-8 and then ciphering the bytes using SHA256 algorithm (see also 3.1.1) : SHA256( UTF-8(Data+secretKey ) ) 7

8 4. HOW TO IMPLEMENT A PAYMENT? 4.1 PAYMENT REQUEST The payment request must be made as an HTTP post to connector s gateway. The easiest way to proceed is by using an HTML form and using the POST method. See example below Fields of the payment request All the data of the payment request must be provided in the POST request fields as detailed in 3.1. InterfaceVersion must be set to HP_1.0. See data dictionary for a description of parameters of the payment request, their format and their optional or mandatory nature Example <form method="post" action=" <input type="hidden" name="data" value="amount=55 currencycode=978 merchantid= normalreturnurl= tr ansactionreference= keyversion=1"> <input type="hidden" name="interfaceversion" value="hp_1.0"> <input type="hidden" name="seal" value="21a57f2fe765e1ae4a8bf15d73fc1bf2a533f547f2343d12a499d9c d4"> <input type="submit" value="proceed to payment"> </form> Error cases When the payment request is received by the gateway, the provided fields values are checked. What follows is the list of errors that may arise, with their explanation and hints to solve the problems encountered. Note that, as the resulting error page is displayed to the customer, full error detail will only be shown on the demo environment used at integration step. Once in Production, only a generic message such as Error while processing your payment request. Please contact the merchant. will be displayed. Message Cause Solution Invalid POST field: <field name> The POST request contains a field which is unknown Check the available POST fields in user guide Missing mandatory POST field: < field name> The mandatory POST field < field name> is missing in the POST request Check the mandatory POST fields in user guide 8

9 Message Cause Solution Unknown interface version: <version> Invalid keyword: <param name>=<param value> Invalid parameter size: <param name>=<param value> The value <version> of the POST field InterfaceVersion is unknown The request contains a parameter <param name> which is not expected in the payment request Value of parameter <param name> does not have the correct size Check available interface versions in user guide Check the payment request parameters in data dictionary Check expected payment request parameter s value size in data dictionary Invalid parameter value: <param name>=<param value> Missing mandatory parameter: <param name> Value of parameter <param name> does not have the right format The mandatory parameter <param name> is missing in the payment request Check expected payment request parameter s value format in data dictionary Check the mandatory payment request parameters in data dictionary Unknown key version: <version> The value <version> of the parameter keyversion is unknown Check available key versions for your merchant in merchant extranet Unknown merchant Id: <ID> Invalid seal Transaction already processed: <transaction reference> Any other message The merchant ID is not known in database The payment request seal check failed due to a miscomputed value in the payment request or a modification of one or many parameters values between its generation and receipt on the Rabo OmniKassa gateway A payment request with the same transactionreference value has already been received and processed by the gateway Check your merchant Id Check the seal computation rules in data dictionary Ensure that the transaction reference is unique for a given transaction Contact Support Team Rabo OmniKassa 9

10 4.2 PAYMENT RESPONSE Response to a payment request can come in two ways: manual and/or automatic response (also called notifications). There s no difference in meaning between the terms response and notification in this document Manual notification After the customer completed his/her payment operation on the paypage, he can click a link back to merchant s website which will return him to the adequate page on merchant s website which URL is provided in the <normalreturnurl> parameter within the payment request. This hit will be sent as an HTTP POST request to the target URL, along with the parameters of the transaction as sent in the payment request plus some additional information (status, payment mean used ). The provided URL targets must be able to process the information provided by the notification posts coming from the Rabo OmniKassa gateway. See POST fields details in 3.1. IMPORTANT: Note that parameters of the response will have the exact upper and lower case characters as given in this document. InterfaceVersion will be set to HP_1.0. See the Rabo OmniKassa data dictionary for a description of parameters contained in the notification. IMPORTANT: Note that the customer may never click this link (browser closed or crashed, page closed ). So the manual notification alone cannot be relied on to be warned of the completion of the payment request Automatic notification If an automaticresponseurl has been set as payment request parameter (it is optional), the Rabo OmniKassa payment server sends a response to it as HTTP POST requests built the same way as for manual response. See POST fields details in 3.1. IMPORTANT: Note that parameters of the response will have the exact casing as given in this document. I.e. the names are composed of upper and lower case letters. InterfaceVersion will be set to HP_1.0. See the Rabo OmniKassa data dictionary for the description of parameters contained in the response Troubleshooting in case of not received responses Rabo OmniKassa In the case you do not receive the reponse on your server, you re pleased to find here a list of verifications to do: 10

11 Check that notifications URLs are provided in the payment request and if so, that those are valid. Provided URLs must be reachable from external internet access. An access control (login/password or IP filter) or a firewall may block access to your server. Hits to the notification URLs should appear in your server s access log (hit history). If you use a non standard port, it must be within the 80 and 9999 range. You cannot add context parameters to the notification URLs. Instead, use the orderid which you provided in the payment request (optional field) and which is given back in the response parameters Error management No Seal field in the response In case of error such as unknown Merchant ID, the payment server cannot seal the response because it cannot retrieve the secret key used by the webshop. In that case, the payment server sends a response without the Seal field. 11

12 5. HOW TO SEAL A MESSAGE? 5.1 WHY SEAL A MESSAGE? The parameters of the transaction (payment request) are transmitted via customer s browser. So a dishonest customer may modify them before it is transmitted to the payment server. Therefore, it is necessary to add a security system to enforce integrity of the transaction parameters. The fact that the seal is OK means two things: - The integrity of the messages request and response; no alteration during the exchange, - The authentication of the sender and receiver because they share the same secret key ( secret Key ). Note: In case of corruption of the key, the merchant has to call the Support Team Rabo OmniKassa to renew it. This team is reachable from Monday to Saturday between 8:00 AM and 8:00 PM and on Sunday between 8:00 AM and 4:00 PM calling METHOD USED TO SEAL A MESSAGE Sealing is done by computing a ciphered value from transaction parameters (Data) and an appended secret key (secret Key) unknown from the customer. Strings are converted to UTF8 bytes before ciphering. The cipher algorithm (SHA256) produces an undecipherable result which is computed again on connector s side for comparison. The result must be set as a hexadecimal value in the Seal POST field Java 5.3 CODING EXAMPLES import java.security.messagedigest; public class ExampleSHA256 { /** * table to convert a nibble to a hex char. */ static final char[] hexchar = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}; /** * Fast convert a byte array to a hex string * with possible leading zero. 12

13 b array of bytes to convert to string hex representation, two chars per byte. */ public static String encodehexstring ( byte[] b ) { StringBuffer sb = new StringBuffer( b.length * 2 ); for ( int i=0; i<b.length; i++ ) { // look up high nibble char sb.append( hexchar [( b[i] & 0xf0 ) >>> 4] ); // look up low nibble char sb.append( hexchar [b[i] & 0x0f] ); } return sb.tostring(); } /** * Computes the seal the Data the parameters to cipher secretkey the secret key to append to the parameters hex representation of the seal, two chars per byte. */ public static String computeseal(string Data, String secretkey) throws Exception { MessageDigest md = MessageDigest.getInstance("SHA-256"); md.update((data+secretkey).getbytes("utf-8")); } return encodehexstring(md.digest()); /** args */ public static void main(string[] args) { try { System.out.println (computeseal("parameters", "key")); } catch (Exception e) { e.printstacktrace(); } } } Php 5 <?php echo hash('sha256', $Data.$secretKey);?> Data and secretkey must use UTF-8 charset. See utf8_encode to convert from ISO to UTF net (Done using a simple form Form1 containing two text fields for input: txtrabo, txtsecretkey and one for output: lblhex) 13

14 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Security.Cryptography; namespace ExampleDotNET { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void cmdgo_click(object sender, EventArgs e) { String schaine = txtrabo.text + txtsecretkey.text; UTF8Encoding utf8 = new UTF8Encoding(); Byte[] encodedbytes = utf8.getbytes(schaine); byte[] sharesult; SHA256 sham = new SHA256Managed(); sharesult = sham.computehash(encodedbytes); } lblhex.text = ByteArrayToHEX(shaResult); private string ByteArrayToHEX(byte[] ba) { StringBuilder hex = new StringBuilder(ba.Length * 2); foreach (byte b in ba) hex.appendformat("{0:x2}", b); return hex.tostring(); } } } 14

15 6. HOW TO TEST? The Rabo OmniKassa simulation environment enables users to perform test transactions using a test webshop ID. It is not possible to use your own webshop ID in this environment; this results in an error message. The following payment methods can be used for testing purposes: ideal, MiniTix, Visa, MasterCard and Maestro, along with the cash services Giro Collection Form, Collection, and reimbursement. The table below contains technical information required for the simulation environment, along with an important announcement: Simulation URL connector Webshop ID (merchantid) Version key 1 SecretKey _KEY1 Please note For every transaction, you must enter a unique transaction reference in the transactionreference field. In the simulation environment you can use your Chamber of Commerce registration number (for example) for this purpose, followed by a code for your webshop you choose yourself (if you operate more than one webshop) and a reference of your choice. Example: if your Chamber of Commerce registration number is , the webshop code is 01, and the order ID from your webshop package is 1, this will generate transaction reference TEST IDEAL TRANSACTION When you select IDEAL as the payment mean, you are routed to the test ideal server that simulates an ideal transaction from the amount of the transaction. Afterwards you are returned to payment server that displays a receipt with the result of the transaction. ideal simulation rules Transaction Amount ideal response 2 Transaction cancelled 3 Transaction expired 4 Transaction opened 5 Transaction failure 15

16 Other cases Transaction success 6.2 TEST MINITIX TRANSACTION When you select MINITIX, you are routed to the test MiniTix server that simulates a MiniTix transaction from the amount of the transaction. Afterwards you are returned to payment server that displays a receipt with the result of the transaction. MiniTix Simulation rules On the MiniTix simulation page different buttons are displayed to test all possible cases. 6.3 TEST CARD TRANSACTION When you select VISA, MASTERCARD or MAESTRO, you are routed to the capture card page. On this page you have to fill the form. Card simulation rules o The brand used is defined by the 6 first digits. The PAN (Primary Account Number) length must be between 16 and 19 digits. Card brand Card prefix VISA MASTERCARD MAESTRO o o You can simulate all the response codes (see appendix 9.6) by changing the last two digits. The security code size must be 3 or 4 digits. Example: if you use the card number you will simulate a VISA card payment: your payment will be refused with next listed response code 05 authorization refused. 6.4 TEST ACCEPTGIRO/INCASSO/REMBOURS TRANSACTIONS When you select INCASSO, ACCEPTGIRO or REMBOURS, you are routed directly to a specific payment information page for the selected payment mean with no action possible. You can only select the return to merchant s website button on this page. In other words, there are no specific response codes for testing with one of these payment means. 16

17 17

18 7. HOW TO GO LIVE? The next step is to go to the live environment for proceeding with last pre-live verifications before you are able to work with Rabo OmniKassa in production. This phase will allow controlling the right registration of your contract parameters following requested/accepted payment means. 7.1 MERCHANT IDENTIFIERS The URL to use for the live/pre-live environment is: To access to the live server, you have to get 3 identifiers: - The merchant Id ( webwinkel ID ) that identifies the webshop on the payment server - The keyversion, and - the secretkey. The last two listed identifies are used to seal the request and check the response The merchant ID is provided by the Support Team Rabo OmniKassa during the registration phase. You ll find your assigned keyversion and secretkey using URL You can connect to this URL by using a <login> and <password> given by the Support Team Rabo OmniKassa during the registration phase. 7.2 PRE-LIVE TESTS During the pre-live tests, the merchant has to use a real card number, ideal account and MiniTix account numbers because the transactions are sent to the real acquirer to get an authorization. For Visa or MasterCard, there is no remittance process foreseen meaning no debit/credit operation for the buyer and the merchant can be expected. In case of ideal and MiniTix, there is a single message sent to the payment mean acquirer that includes authorization and payment. The single message mode means that, in this case, a debit/credit operation is generated for the buyer and the merchant. We suggest that the merchant uses his own creditcard, ideal account and MiniTix account numbers to generate these pre-live transactions. 7.3 PRODUCTION / GO LIVE When the pre-live tests are finished and successfully completed, the merchant has to send back (via a reply) on previous received (after reception and processing of Rabo OmniKassa contract) the approval form to the Support Team Rabo OmniKassa with mention of the expected Rabo OmniKassa go live date. 18

19 You re free to do this for all web shops at once (by sending back the only once) or by web shop (sending back the several times, depending on your choice of the go live dates for your web shops). 19

20 8. MESSAGES DESCRIPTION 8.1 PAYMENT REQUEST Mandatory fields These fields must be provided for each transaction. Field name currencycode merchantid normalreturnurl amount transactionreference keyversion Description Currency of the transaction. 3 characters long numeric code. See appendix 9.3. ID of your the Rabo OmniKassa merchant URL to which the customer must be returned once the transaction is completed (manual notification URL). Length is limited to 512 characters. URL must not contain parameters. Amount of the transaction without decimal separator (ex: ). See appendix 9.3. Numeric string limited to 12 characters (i.e. maximum amount is ) Reference of the Rabo OmniKassa transaction which must be unique for a given merchant. Alphanumeric string limited to 35 characters. Version of the secret key to use as provided by the merchant management extranet. Table 1: Payment request mandatory fields Optional fields Field name automaticresponseurl customerlanguage paymentmeanbrandlist Description URL to use for automatic notification. Length is limited to 512 characters. Note: URL may not contain parameters. Language used to display the paypage or the error page. Default is user s browser language. 2 characters long code. See appendix 9.4. List of the authorized payment mean is the case a restriction should occur. Contains the list of Rabo OmniKassa accepted payment mean brand codes, comma separated. Payment means listed must be listed in capital 20

21 Field name Description characters. The ordering used will define the order in which the payment means are listed on the Rabo OmniKassa paypage. Example: IDEAL,MINITIX,VISA,MASTERCARD. orderid expirationdate If not set, by default, all the supported means are proposed to the customer except INCASSO, ACCEPTGIRO and REMBOURS that are only available if they are populated in this field. See appendix 9.5. Private merchant field. For instance, this field can be used by merchant to store the identifier of the order in the merchant information system. Alphanumeric string limited to 32 characters. Expiration date of the payment request. Alphanumeric string formatted according to ISO8601. See appendix 9.1. Table 2: Payment request optional fields 8.2 RESPONSES / NOTIFICATIONS (AUTOMATIC AND MANUAL) The content of the automatic and manual responses of the Rabo OmniKassa Payment Web are identical. It will vary according to the status of the payment request. Field name amount currencycode merchantid transactionreference keyversion orderid responsecode transactiondatetime Description As provided in the payment request. As provided in the payment request. As provided in the payment request. As provided in the payment request. As provided in the payment request. As optionally provided in the payment request. Rabo OmniKassa response code of the payment request. See appendix 9.6. If the payment is sent to acquirer for authorization: Date/Time in the Rabo OmniKassa system when the payment is sent to acquirer in merchant's time zone. Otherwise, date time when the Rabo OmniKassa response code is produced on 21

22 Field name Description the Rabo OmniKassa system. Alphanumeric string formatted according to ISO8601. See appendix 9.1. authorisationid* paymentmeantype* paymentmeanbrand* complementarycode* maskedpan* Identifier of the authorization provided by the acquirer. Set by the merchant for manual authorization. Type of payment mean chosen by the customer. See appendix 9.5. Brand of payment mean chosen by the customer. See appendix 9.5. Response code to complementary checks. Future use Masked primary account number. Format is nnnnnn.nnnn (n is a number between 0 and 9) *: these fields are provided when available, depending on the transaction status and the payment mean which was chosen. Table 3: Payment response fields 22

23 9. DATA DICTIONNARY 9.1 FORMAT CONVENTION. This chapter describes the convention related to the Format Column used in Field Description Value N A S Numeric YYYY YY MM DD hh mm ss Description Indicate that Numeric value [0-9] is accepted Indicate that Alphabetic value [aa-zz] is accepted Indicate that Special characters are accepted Indicate the maximum size of the field Indicate the year Indicate the 2 last digit of the year Indicate the month Indicate the day Indicate hours (24h) Indicate minutes Indicate seconds Indicate an ISO8601 DateTime format (ANS25): YYYY-MM-DDThh:mm:sszzzzzz ISO8601 YYYY-MM-DD : Year, Month, Day, with - as a separator T : «T» static value indicating that the following is a time description. hh:mm:ss : Hour, Minute, Second with : as a separator. A fraction of a second can be added to this time using a dot or a comma as a separator. zzzzzz : time zone or time shift compared to UTC using one of the following formats : «Z» or «+hh:mm» or «-hh:mm» url base64url Indicates that an url is accepted ANS with following accepted special characters [_-=] restrictedstring ANS with following accepted special characters [_@.-+] and blank liststring ANS with following accepted special characters [_@.-+,] and blank 23

24 Value extendedstring Description ANS with following special characters [.-,;:_?!<>+=*^/\&~# and blank Table 4: data dictionary format convention 9.2 FIELDS DESCRIPTION The table below describes all fields. Please note that whenever specific values are mentioned in the description column, the list of values is provided in the specific values section of this document. Field Name Format Description amount authorisationid automaticresponseurl N12 AN10 ANS512 url Final amount of a transaction (Debit or Credit) or amount of an operation (refund, cancel, ) Identifier of the authorization provided by the acquirer. Set by the merchant for manual authorization. This is the address to which the Rabo OmniKassa service should automatically notify the merchant after a payment or a process captureday N2 Settlement delay (in days) indicator Future use capturemode ANS20 Indicates the capture mode (automatic or fulfillment) Future use complementarycode N2 Response code to complementary checks. Future use complementaryinfo ANS255 extendedstring Description of the complementary code Future use currencycode N3 Currency of the amount. Specific values customerlanguage A2 Language of the customer, used for presentation. Specific values expirationdate ANS25 ISO8601 Expiration date of the payment request (UTC timezone) keyversion N10 Identifier of the Merchant secret key maskedpan NS11 Masked primary account number. Format is nnnnnn.nnnn (n is a number between 0 and 9) merchantid N15 Identifier of the merchant normalreturnurl ANS512 url This is the internet address used by the Rabo OmniKassa service to redirect the user after the payment. 24

25 Field Name Format Description orderid AN32 Private merchant field. For instance, this field can be used by merchant to store the identifier of the order in the merchant information system paymentmeanbrand ANS20 Brand of the payment mean. Specific values paymentmeanbrandlist ANS128 liststring Merchant accepted payment means list. Can be set by the merchant for each transaction: list of accepted payment means with comma, separator. If not set, default payment mean list applies except INCASSO, ACCEPTGIRO and REMBOURS that are only available if they are populated in this field. Specific values paymentmeans1,paymentmean2,, paymentmeansn example : IDEAL,MINITIX,INCASSO Payment means listed must be listed in capital characters. The ordering used will define the order in which the payment means are listed on the Rabo OmniKassa paypage. paymentmeantype ANS20 Type of the payment mean. Specific values responsecode N2 Rabo OmniKassa response code of a payment request. Specific values transactiondatetime ANS25 ISO8601 If the payment is sent to acquirer for authorization: Date/Time in the Rabo OmniKassa system when the payment is sent to acquirer in merchant's time zone. Otherwise, date time when the Rabo OmniKassa response code is produced on the Rabo OmniKassa system. transactionreference AN35 Identifier of the transaction Table 5: data dictionary fields description 9.3 CURRENCY CODES & AMOUNTS The currency code are given in the ISO 4217-Numeric codification. To set fields amounts, this table describes for each following currency a sample amount and the value. The fractional unity in the following table stands for the currency number of decimals. Currency code Example Currency name Fractional unity Value Amount Fields amount Euro , American Dollar Swiss Franc , Pound

26 Currency name Currency code Example Fractional unity Value Amount Fields amount Canadian Dollar Yen Australian Dollar Norwegian crown Swedish crown Danish crown Table 6: data dictionary currency code 9.4 CUSTOMER LANGUAGES Here is the list of the main language codes used (ISO Alpha2) and their meaning. Code en fr de it es nl Language English French German Italian Spanish Dutch Table 7: data dictionary customer language 9.5 PAYMENT MEANS PaymentMeanBand ideal PaymentMeanType CREDIT_TRANSFER VISA MASTERCARD CARD 26

27 PaymentMeanBand PaymentMeanType MAESTRO MINITIX OTHER INCASSO ACCEPTGIRO REMBOURS OTHER OTHER OTHER Table 8: data dictionary payment means 9.6 THE RABO OMNIKASSA RESPONSE CODE Depending on the end of payment, the returned responsecode can be: Code Description Transaction success, authorization accepted (transaction succeeded, authorization accepted). Please phone the bank because the authorization limit on the card has been exceeded 03 Invalid merchant contract 05 Do not honor, authorization refused 12 Invalid transaction, check the parameters sent in the request. 14 Invalid card number or invalid Card Security Code or Card (for MasterCard) or invalid Card Verification Value (for Visa) 17 Cancellation of payment by the end user 24 Invalid status. 25 Transaction not found in database 30 Invalid format 34 Fraud suspicion 40 Operation not allowed to this merchant 60 Pending transaction 63 Security breach detected, transaction stopped. 27

28 Code 75 Description The number of attempts to enter the card number has been exceeded (Three tries exhausted) 90 Acquirer server temporarily unavailable 94 Duplicate transaction. (transaction reference already reserved) 97 Request time-out; transaction refused 99 Payment page temporarily unavailable Table 9: data dictionary response code See 9.7 for details on IDEAL response codes and 9.8 for details on MiniTix response codes. 9.7 IDEAL ACCEPTANCE DETAILS This chapter gives details on the response code mapping of ideal scheme acceptance. ideal Status field values Open ideal ideal Description Result not known (yet). A new request is necessary to obtain the status. responsecode Rabo OmniKassa Rabo OmniKassa Transactions stored in Rabo OmniKassa it depends on the 60 (1) final ideal responsecode Failure sending in Issuer unavailable, set by ideal acquirer 90 No Success Positive result; the payment is guaranteed. 00 yes (Status=Remitted to the bank) Cancelled Expired Negative result due to cancellation by consumer; no payment has been made. Negative result due to expiry of validity; no payment has been made. 17 No 97 (3) No Failure Negative result due to other reasons. 05 (4) yes (Status=Refused) Table 10: ideal response code mapping 28

29 (1) Transaction not finalized, the Rabo OmniKassa is waiting for the final ideal status. (3) The Rabo OmniKassa responsecode 97 is sent from the Rabo OmniKassa paypage timeout (4) ideal doesn't distinguish between technical problems and functional refusal 29

30 9.8 MINITIX ACCEPTANCE DETAILS This chapter gives details on the response code mapping of MiniTix scheme acceptance. MiniTix Rabo OmniKassa Minitix errorcode field values MiniTix Description responsecode Rabo OmniKassa Transactions stored in Rabo OmniKassa 10 Syntax error 05 no 20 Integrity error 05 no 30 Merchant not known 05 no 31 Merchant disabled 05 no 40 Payment cancelled 17 no 80 Request outside time window 97 no 90 System error 90 no 100 Unauthorized customer 05 yes (Status=Refused) 110 Payment confirmation started 99 no 120 Insufficient balance 05 yes (Status=Refused) NA Transaction OK 00 yes (Status=Remitted to the bank) Table 11: MiniTix response code mapping 9.9 INCASSO, ACCEPTGIRO AND REMBOURS ACCEPTANCE DETAILS Based on the way of integration in Rabo OmniKassa, there are no payment mean specific request response codes regarding these payment means, near the general used response codes (for details, please refer to Error cases ). 30

Integration Guide. Rabo OmniKassa

Integration Guide. Rabo OmniKassa C Integration Guide Rabo OmniKassa Contents 1. INTRODUCTION... 4 2. WHAT YOU NEED TO KNOW ABOUT THE RABO OMNIKASSA... 5 2.1 INTEGRATING RABO OMNIKASSA AND THE WEBSHOP... 5 2.2 SECURITY... 5 2.3 SECRET

More information

ipayment Gateway API (IPG API)

ipayment Gateway API (IPG API) ipayment Gateway API (IPG API) Accepting e-commerce payments for merchants Version 3.2 Intercard Finance AD 2007 2015 Table of Contents Version control... 4 Introduction... 5 Security and availability...

More information

Buckaroo Payment Engine 3.0 Implementation Manual HTML gateway

Buckaroo Payment Engine 3.0 Implementation Manual HTML gateway This manual and the functionality described herein may be subject to changes. Please take this into account when implementing the described functionality. Buckaroo Payment Engine 3.0 Implementation Manual

More information

MONETA.Assistant API Reference

MONETA.Assistant API Reference MONETA.Assistant API Reference Contents 2 Contents Abstract...3 Chapter 1: MONETA.Assistant Overview...4 Payment Processing Flow...4 Chapter 2: Quick Start... 6 Sandbox Overview... 6 Registering Demo Accounts...

More information

COMMERCIAL-IN-CONFIDENCE

COMMERCIAL-IN-CONFIDENCE CardEaseMPI a technical manual describing the use of CardEaseMPI 3-D Secure Merchant Plug-In. Authors: Nigel Jewell Issue 2.9. November 2014. COMMERCIAL-IN-CONFIDENCE Copyright CreditCall Limited 2007-2014

More information

Implementation guide - Interface with the payment gateway PayZen 2.5

Implementation guide - Interface with the payment gateway PayZen 2.5 Implementation guide - Interface with the payment gateway PayZen 2.5 Document version 3.5 Contents 1. HISTORY OF THE DOCUMENT... 4 2. GETTING IN TOUCH WITH TECHNICAL SUPPORT... 6 3. DIFFERENT TYPES OF

More information

Paynow 3rd Party Shopping Cart or Link Integration Guide

Paynow 3rd Party Shopping Cart or Link Integration Guide Paynow 3rd Party Shopping Cart or Link Integration Guide Version 1.0.5 15 August 2014 A guide outlining merchant integration into Paynow for externally hosted shopping carts or applications. For details

More information

Hosted Credit Card Forms Implementation Guide

Hosted Credit Card Forms Implementation Guide Hosted Credit Card Forms Implementation Guide Merchant implementation instructions to integrate to the Setcom s hosted credit card forms. Covers: fraud screening, Verified by Visa, MasterCard SecureCode

More information

Platron API. Technical description. version 3.5

Platron API. Technical description. version 3.5 Platron API Technical description version 3.5 2 Contents Contents... 3 Version History... 5 The Goal of the Service... 10 Payment Scenario... 10 General Principles of Interaction Between Merchant and Platron...

More information

Secure Card Data. Specification. Version 3.1.5. 110.0097 SIX Payment Services

Secure Card Data. Specification. Version 3.1.5. 110.0097 SIX Payment Services Secure Card Data Specification Version 3.1.5 110.0097 SIX Payment Services Table of Contents 1 Introduction... 3 1.1 Data Security and PCI DSS... 3 1.2 Summary... 3 1.3 Requirements... 3 1.4 Supported

More information

Merchant Plug-In. Specification. Version 3.2. 110.0093 SIX Payment Services

Merchant Plug-In. Specification. Version 3.2. 110.0093 SIX Payment Services Merchant Plug-In Specification Version 3.2 110.0093 SIX Payment Services Table of contents 1 Introduction... 3 1.1 Summary... 3 1.2 Requirements... 4 1.3 Participation and Result of the Authentication...

More information

Cardsave Payment Gateway

Cardsave Payment Gateway Cardsave Payment Gateway Cart Implementation David McCann Cardsave Online Version 1 1 st August 2010 Contents Page Overview 3-4 o Integration Types 3 Direct/Integrated (Preferred Method) Re-direct/Hosted

More information

SVEA HOSTED SERVICE SPECIFICATION V1.13

SVEA HOSTED SERVICE SPECIFICATION V1.13 SVEA HOSTED SERVICE SPECIFICATION V1.13 Table of Contents Abstract... 2 Modes of operation... 2 Interactive Mode details... 2 Integration... 2 Input parameters... 3 Output parameters... 8 Error Codes...

More information

Virtual Terminal User s Guide

Virtual Terminal User s Guide Virtual Terminal User s Guide For Professional Use Only Currently only available in English. A usage Professional Uniquement Disponible en Anglais uniquement pour l instant. Last updated: June 2009 PayPal

More information

Virtual Terminal User s Guide

Virtual Terminal User s Guide Virtual Terminal User s Guide For Professional Use Only Currently only available in English. A usage Professional Uniquement Disponible en Anglais uniquement pour l instant. Last updated: June 2008 PayPal

More information

Batch Processing. Specification. Version 4.1. 110.0087 SIX Payment Services

Batch Processing. Specification. Version 4.1. 110.0087 SIX Payment Services Batch Processing Specification Version 4.1 110.0087 SIX Payment Services Contents 1 Introduction... 3 1.1 Requirements... 3 1.2 Security and PCI DSS... 3 1.3 Other Information... 4 1.4 Supported Payment

More information

MiGS Virtual Payment Client Integration Guide. July 2011 Software version: MR 27

MiGS Virtual Payment Client Integration Guide. July 2011 Software version: MR 27 MiGS Virtual Payment Client Integration Guide July 2011 Software version: MR 27 Copyright MasterCard and its vendors own the intellectual property in this Manual exclusively. You acknowledge that you must

More information

eway AU Hosted Payment Page

eway AU Hosted Payment Page Web Active Corporation eway AU Hosted Payment Page Full Analysis and Data Type Field Specifications Contents Introduction... 3 Customisation... 4 Processing Fraud Protected Transactions... 5 Appendix A

More information

Manual. Netumo NETUMO HELP MANUAL WWW.NETUMO.COM. Copyright Netumo 2014 All Rights Reserved

Manual. Netumo NETUMO HELP MANUAL WWW.NETUMO.COM. Copyright Netumo 2014 All Rights Reserved Manual Netumo NETUMO HELP MANUAL WWW.NETUMO.COM Copyright Netumo 2014 All Rights Reserved Table of Contents 1 Introduction... 0 2 Creating an Account... 0 2.1 Additional services Login... 1 3 Adding a

More information

Credomatic Integration Resources. Browser Redirect API Documentation June 2007

Credomatic Integration Resources. Browser Redirect API Documentation June 2007 Credomatic Integration Resources Browser Redirect API Documentation June 2007 Table of Contents Methodology... 2 Browser Redirect Method (Browser to Server) FIG. 1... 2 API Authentication Parameters...

More information

API Integration Payment21 Recurring Billing

API Integration Payment21 Recurring Billing API Integration Payment21 Recurring Billing The purpose of this document is to describe the requirements, usage, implementation and purpose of the Payment21 Application Programming Interface (API). The

More information

Merchant One Payment Systems Integration Resources. Direct Post API Documentation June 2007

Merchant One Payment Systems Integration Resources. Direct Post API Documentation June 2007 Merchant One Payment Systems Integration Resources Direct Post API Documentation June 2007 Table of Contents Methodology... 2 Direct Post Method (Server to Server) FIG. 1... 2 Transaction Types... 3 Sale

More information

How To Use The Rabo Ompo Kassa Dashboard On A Bank Account On A Credit Card Or Debit Card On A Sim Sims.Com (European)

How To Use The Rabo Ompo Kassa Dashboard On A Bank Account On A Credit Card Or Debit Card On A Sim Sims.Com (European) User Guide Dashboard of the Rabo OmniKassa Table of Contents 1 The Rabo OmniKassa dashboard... 4 2 Logging in... 5 2.1 The login page of the Rabo OmniKassa dashboard... 5 2.1.1 Navigation... 5 2.1.2 Logging

More information

AS DNB banka. DNB Link specification (B2B functional description)

AS DNB banka. DNB Link specification (B2B functional description) AS DNB banka DNB Link specification (B2B functional description) DNB_Link_FS_EN_1_EXTSYS_1_L_2013 Table of contents 1. PURPOSE OF THE SYSTEM... 4 2. BUSINESS PROCESSES... 4 2.1. Payment for goods and services...

More information

API Integration Payment21 Button

API Integration Payment21 Button API Integration Payment21 Button The purpose of this document is to describe the requirements, usage, implementation and purpose of the Payment21 Application Programming Interface (API). The API will allow

More information

Direct Payment Protocol Errors A Troubleshooter

Direct Payment Protocol Errors A Troubleshooter Direct Payment Protocol Errors A Troubleshooter December 2011 This manual and accompanying electronic media are proprietary products of Optimal Payments plc. They are to be used only by licensed users

More information

Secure XML API Integration Guide - Periodic and Triggered add in

Secure XML API Integration Guide - Periodic and Triggered add in Secure XML API Integration Guide - Periodic and Triggered add in Document Control This is a control document DESCRIPTION Secure XML API Integration Guide - Periodic and Triggered add in CREATION DATE 15/05/2009

More information

Network Merchants Inc (NMI) Integration Resources. Direct Post API Documentation April 2010

Network Merchants Inc (NMI) Integration Resources. Direct Post API Documentation April 2010 Network Merchants Inc (NMI) Integration Resources Direct Post API Documentation April 2010 Table of Contents Methodology... 2 Direct Post Method (Server to Server) FIG. 1... 2 Transaction Types... 3 Sale

More information

Easy CollECt and the transaction ManagEr interface

Easy CollECt and the transaction ManagEr interface Easy Collect and the Transaction Manager Interface Table of Contents 1 2 3 Easy Collect... 4 1.1. Configuring your account for Easy Collect... 4 1.1.1. Creating your Easy Collect ID... 4 1.1.1.1. Transaction

More information

Mail & Telephone Order Payments Service (WorldAccess) Guide. Version 4.3 February 2014 Business Gateway

Mail & Telephone Order Payments Service (WorldAccess) Guide. Version 4.3 February 2014 Business Gateway Mail & Telephone Order Payments Service (WorldAccess) Guide Version 4.3 February 2014 Business Gateway Table Of Contents About this Guide... 1 Update History... 1 Copyright... 1 Introduction... 2 What

More information

MasterCard In tern et Gatew ay Service (MIGS)

MasterCard In tern et Gatew ay Service (MIGS) Master Card Inter national MasterCard In tern et Gatew ay Service (MIGS) MIGS Payment Client Reference Manual Prepared By: Patrick Hayes Department: Principal Consultant, ebusiness Solutions Date Written:

More information

Virtual Terminal User s Guide

Virtual Terminal User s Guide Virtual Terminal User s Guide For Professional Use Only Currently only available in English. A usage Professional Uniquement Disponible en Anglais uniquement pour l instant. Last updated: August 2009 PayPal

More information

Payment Processor Errors A Troubleshooter

Payment Processor Errors A Troubleshooter Payment Processor Errors A Troubleshooter November 2005 Version 2.4 This manual and accompanying electronic media are proprietary products of Optimal Payments Inc. They are to be used only by licensed

More information

Swedbank Payment Portal Implementation Overview

Swedbank Payment Portal Implementation Overview Swedbank Payment Portal Implementation Overview Product: Hosted Pages Region: Baltics September 2015 Version 1.0 Contents 1. Introduction 1 1.1. Audience 1 1.2. Hosted Page Service Features 1 1.3. Key

More information

Bank and SecurePay Response Codes

Bank and SecurePay Response Codes Bank and SecurePay s Last updated: 19/07/2013 Bank s for Credit Card Transactions APPROVED 00 Approved 08 Honour with ID 11 Approved VIP (not used) 16 Approved, Update Track 3 (not used) 77 Approved (ANZ

More information

This Annex uses the definitions set out in the Agreement on service of payment cards on the Internet (hereinafter the Agreement).

This Annex uses the definitions set out in the Agreement on service of payment cards on the Internet (hereinafter the Agreement). SERVICE OF PAYMENT CARDS ON THE INTERNET ANNEX 2 TO AGREEMENT Requirements for Queries to I-Payment Terminal This Annex uses the definitions set out in the Agreement on service of payment cards on the

More information

Server and Direct Shared Protocols

Server and Direct Shared Protocols Server and Direct Shared Protocols IMPORTANT: Before reading this document, you should have read through the Server or Direct Protocol and Integration Guidelines that accompany it. These explain the terms

More information

Web Services Credit Card Errors A Troubleshooter

Web Services Credit Card Errors A Troubleshooter Web Services Credit Card Errors A Troubleshooter January 2014 This manual and accompanying electronic media are proprietary products of Optimal Payments plc. They are to be used only by licensed users

More information

Elavon Payment Gateway- Reporting User Guide

Elavon Payment Gateway- Reporting User Guide Elavon Payment Gateway- Reporting User Guide Version: v1.1 Contents 1 About This Guide... 4 1.1 Purpose... 4 1.2 Audience... 4 1.3 Prerequisites... 4 1.4 Related Documents... 4 1.5 Terminology... 4 1.6

More information

Back Office. Back-Office User Guide v.3.2.0. epdq 2015, All rights reserved.

Back Office. Back-Office User Guide v.3.2.0. epdq 2015, All rights reserved. Back-Office User Guide v.3.2.0 Table of Contents 1 Introduction... 4 2 Login screen... 5 3 Account Menu... 6 3.1 Home... 6 3.2 Menu section:... Support 6 3.2.1 3.2.2 Support menu... 6 Submit a support...

More information

Server-to-Server Credit Card Implementation Guide

Server-to-Server Credit Card Implementation Guide Server-to-Server Credit Card Implementation Guide Merchant implementation instructions to integrate to the Setcom credit card processing platform. Covers: Fraud Screening, Verified by Visa, MasterCard

More information

Payment module integration for Magento 2. Version 2.0.0

Payment module integration for Magento 2. Version 2.0.0 Version 2.0.0 Contents 1. RELEASE NOTES...3 2. MODULE FEATURES... 4 3. PREREQUISITES... 5 4. INSTALLATION OF THE PAYMENT MODULE... 6 4.1. Package description... 6 4.2. Installation of the module... 6 5.

More information

iyzico one-off payment and installment easy payment integration

iyzico one-off payment and installment easy payment integration iyzico one-off payment and installment easy payment integration Version: 1.0.11 iyzi teknoloji ve ödeme sistemleri A.Ş. iyzico one-off payment and installment 1 Release History Date Version Reason for

More information

Virtual Payment Client Integration Reference. April 2009 Software version: 3.1.21.1

Virtual Payment Client Integration Reference. April 2009 Software version: 3.1.21.1 Virtual Payment Client Integration Reference April 2009 Software version: 3.1.21.1 Copyright MasterCard and its vendors own the intellectual property in this Manual exclusively. You acknowledge that you

More information

Web Services Credit Card Errors A Troubleshooter

Web Services Credit Card Errors A Troubleshooter Web Services Credit Card Errors A Troubleshooter March 2011 This manual and accompanying electronic media are proprietary products of Optimal Payments plc. They are to be used only by licensed users of

More information

Web Services Credit Card Errors A Troubleshooter

Web Services Credit Card Errors A Troubleshooter Web Services Credit Card Errors A Troubleshooter January 2012 This manual and accompanying electronic media are proprietary products of Optimal Payments plc. They are to be used only by licensed users

More information

Direct Post. Integration Guide

Direct Post. Integration Guide Direct Post Integration Guide Updated September 2013 Table of Contents 1 Introduction... 4 1.1 What is Direct Post?... 4 1.2 About this Guide... 4 1.3 Features and Benefits... 4 1.4 Card Types Accepted...

More information

A BETTER WAY TO PAY Unified Merchants API (UMAPI).Net Integration Manual

A BETTER WAY TO PAY Unified Merchants API (UMAPI).Net Integration Manual A BETTER WAY TO PAY Unified Merchants API (UMAPI).Net Integration Manual Version 2.3 Contents 1 INTRODUCTION... 5 1.1 Purpose and Objective... 5 1.2 Audience... 5 1.3 Assumptions / Exclusions... 5 1.4

More information

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08 Online signature API Version 0.20, 2015-04-08 Terms used in this document Onnistuu.fi, the website https://www.onnistuu.fi/ Client, online page or other system using the API provided by Onnistuu.fi. End

More information

1. Introduction to CardPay

1. Introduction to CardPay 1. Introduction to CardPay The introduction manual describes the technical aspects of payments processing using CardPay's hosted payment page. CardPay is an online payment processor for e-commerce transactions

More information

Merchant Service Provider Guide for Mobilpenge Based Acquiring

Merchant Service Provider Guide for Mobilpenge Based Acquiring Merchant Service Provider Guide for Mobilpenge Based Acquiring November 14, 2011 Version 1.07 Nets Technical Guide Copyright Nets Danmark A/S Page 1 Contents 1 Introduction... 4 1.1 Notation convention...

More information

MPI Frequently Asked Questions

MPI Frequently Asked Questions MPI Frequently Asked Questions 1 Table of contents 1. General... 4 1.1. I want to use the Europabank MPI to handle the payments for my webshop.... 4 Where do I start?... 4 1.2. Should my shop be hosted

More information

Gateway Direct Post API

Gateway Direct Post API Gateway Direct Post API http://merchantguy.com @MerchantGuy Questions? info@merchantguy.com Contents Methodology....3! Direct Post Method (Server to Server FIG. 1...3 Transaction Types.....4! Sale (sale)..4!

More information

A: This will depend on a number of factors. Things to consider and discuss with a member of our ANZ Merchant Services team are:

A: This will depend on a number of factors. Things to consider and discuss with a member of our ANZ Merchant Services team are: 1 ANZ egate FAQ s Contents Section 1 General information: page 1 Section 2 Technical information for ANZ egate Merchants: page 5 November 2010 Section 1 General information Q: What is ANZ egate? A: ANZ

More information

Barclaycard SmartPay. Hosted Payment Page Integration Guide. Version 3.0 released April 2012

Barclaycard SmartPay. Hosted Payment Page Integration Guide. Version 3.0 released April 2012 Barclaycard SmartPay Hosted Payment Page Integration Guide Version 3.0 released April 2012 DOC Version Control Version No. Date Issued Reason for Change 1.0 July 2010 Initial Document 2.0 February 2012

More information

Refer to the Integration Guides for the Connect solution and the Web Service API for integration instructions and issues.

Refer to the Integration Guides for the Connect solution and the Web Service API for integration instructions and issues. Contents 1 Introduction 4 2 Processing Transactions 5 2.1 Transaction Terminology 5 2.2 Using Your Web Browser as a Virtual Point of Sale Machine 6 2.2.1 Processing Sale transactions 6 2.2.2 Selecting

More information

My Sage Pay User Manual

My Sage Pay User Manual My Sage Pay User Manual Page 1 of 32 Contents 01. About this guide..4 02. Getting started.4 Online help Accessing My Sage Pay Test Servers Live Servers The Administrator account Creating user accounts

More information

Title Page. payplace.express giropay Connection for traders and integrators

Title Page. payplace.express giropay Connection for traders and integrators Title Page payplace.express giropay Connection for traders and integrators Connection for traders and integrators This document relates to payplace.express version 1.2. Revision: 1.3.4 Date of issue: 14/04/2014

More information

Merchant e-solutions Payment Gateway FX Processing. Merchant e-solutions October 2008 Version 1.3

Merchant e-solutions Payment Gateway FX Processing. Merchant e-solutions October 2008 Version 1.3 Merchant e-solutions Payment Gateway FX Processing Merchant e-solutions October 2008 Version 1.3 This publication is for information purposes only and its content does not represent a contract in any form.

More information

Saferpay Implementation Guide

Saferpay Implementation Guide Saferpay Implementation Guide Programmers Manual Date: May 2007 Version: 1.62 Status: Final Telekurs Card Solutions GmbH SAFERPAY - IMPLEMENTATION GUIDE TABLE OF CONTENTS 2 TABLE OF CONTENTS 1 INTRODUCTION

More information

Process Transaction API

Process Transaction API Process Transaction API Document Version 5.9 March 2011 For further information please contact Beanstream customer support at (250) 472-2326 or support@beanstream.com. BEAN # Page 2 of 90 Date Overview...

More information

ANZ egate Virtual Payment Client

ANZ egate Virtual Payment Client ANZ egate Virtual Payment Client Integration Notes Contents Purpose of notes 3 For enquiries and support 3 Contents of ANZ egate kit 3 Sample Codes 3 Bank Hosted, Merchant Hosted and Merchant Hosted with

More information

Merchant Integration Guide

Merchant Integration Guide Merchant Integration Guide Card Not Present Transactions January 2012 Authorize.Net Developer Support http://developer.authorize.net Authorize.Net LLC 082007 Ver.2.0 Authorize.Net LLC ( Authorize.Net )

More information

ResellerPlus - Bulk Http API Specification. (This Document gives details on how to send messages via the Bulk HTTP API for the RouteSms SMPP System)

ResellerPlus - Bulk Http API Specification. (This Document gives details on how to send messages via the Bulk HTTP API for the RouteSms SMPP System) RouteSms ResellerPlus - Bulk Http API Specification (Document Version 1.0.0) (This Document gives details on how to send messages via the Bulk HTTP API for the RouteSms SMPP System) 1 P a g e HTTP API

More information

INTRODUCTION MERCHANT INTEGRATION. Ha noi, 10/7/2012

INTRODUCTION MERCHANT INTEGRATION. Ha noi, 10/7/2012 INTRODUCTION MERCHANT INTEGRATION Ha noi, 10/7/2012 0 Index Index... 1 1. Purpose... 2 2. Content... 2 2.1 Integrate payment gateway... 2 2.2 Edit the specifications of international payment gateway...

More information

API Documentation. Version 2.0

API Documentation. Version 2.0 API Documentation Version 2.0 Table of Contents 1. Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5 1.2 Target Audience...5 1.3 Assistance...6 1.4 Technical Architecture...6 2 Getting

More information

GTPayment Merchant Integration Manual

GTPayment Merchant Integration Manual GTPayment Merchant Integration Manual Version: Page 1 of 7 What s New in version 1.2.0? 1. Price format limit. Only number or decimal point What s New in version 1.2.1? 1. Take out the Moneybookers

More information

Merchant Integration Guide

Merchant Integration Guide Merchant Integration Guide Card Not Present Transactions Authorize.Net Customer Support support@authorize.net Authorize.Net LLC 071708 Authorize.Net LLC ( Authorize.Net ) has made efforts to ensure the

More information

Payment Page Extensions. Online Payment Processing for Businesses Worldwide. www.telr.com

Payment Page Extensions. Online Payment Processing for Businesses Worldwide. www.telr.com Payment Page Extensions Online Payment Processing for Businesses Worldwide www.telr.com Page 2 of 13 Contents About this guide... 3 Copyright... 3 Introduction... 3 Using an extension... 4 Additional information

More information

Merchant Reporting Tool

Merchant Reporting Tool Merchant Reporting Tool payment and transaction statistic for web shops Transaction reports through web-interface to paysafecard application Table of Content 1. Introduction 2 2. Log In 2 2.1 Merchant

More information

PAY BUTTON USER GUIDE PAY BUTTON USER GUIDE. Version: 1.2

PAY BUTTON USER GUIDE PAY BUTTON USER GUIDE. Version: 1.2 PAY BUTTON Version: 1.2-1 - 1 About Pay Button... 3 2 Using the Pay Button Creator... 3 2.1 Fields... 4 2.2 Inserting the Link/QR Code... 5 3 Advanced Integration... 10 3.1 Advanced Integration... 10 3.1.1

More information

Adyen Merchant Manual. Version 1.10 Adyen B.V.

Adyen Merchant Manual. Version 1.10 Adyen B.V. Adyen Merchant Manual Version 1.10 Adyen B.V. Introduction3 Table of Contents Introduction... 3 Audience...3 Changelog...3 1 Payment Life-cycle in the Adyen System... 4 What Happens to a Payment After

More information

CreditLine (4.30A) Click on the chapter titles below to view them: 1: Getting Started. 2: CreditLine Configuration

CreditLine (4.30A) Click on the chapter titles below to view them: 1: Getting Started. 2: CreditLine Configuration 26/10/2015 CreditLine (4.30A) Click on the chapter titles below to view them: 1: Getting Started 2: CreditLine Configuration 3: Converting To Open GI/UPG Mode (CreditLine Plus) 4: Processing Credit Card

More information

PROCESS TRANSACTION API

PROCESS TRANSACTION API PROCESS TRANSACTION API Document Version 8.7 May 2015 For further information please contact Digital River customer support at (888) 472-0811 or support@beanstream.com. 1 TABLE OF CONTENTS 2 Lists of tables

More information

API For Chopstickpay Merchants Configuration: Server-to-server Version: 3.4 Status: Published

API For Chopstickpay Merchants Configuration: Server-to-server Version: 3.4 Status: Published API For Chopstickpay Merchants Configuration: Server-to-server Version: 3.4 Status: Published Contents 1. Version Control... 1 2. Introduction... 2 3. Prerequisites... 2 4. Payment Submission Workflow...

More information

QIWI Wallet Pull Payments API

QIWI Wallet Pull Payments API QIWI Wallet QIWI Wallet Pull Payments API Version 2.1 Table of contents 1. Introduction... 2 1.1. Purpose of the API... 2 1.2. Things to Know About QIWI Wallet... 2 2. QIWI Wallet Interface... 3 2.1. Creating

More information

Merchant Interface User Guide

Merchant Interface User Guide Business Gateway and Corporate Gateway Merchant Interface User Guide V5.0 May 2014 Use this guide to: Understand the Merchant Interface and the functionality it provides Learn how to use the Merchant Interface

More information

Plastic Card Claims Automation Specifications Document

Plastic Card Claims Automation Specifications Document Plastic Card Claims Automation Specifications Document Version: 1.3 Last modified: April 28, 2009 The Plastic Card Policy is underwritten by CUMIS Insurance Society, Inc., a member of the CUNA Mutual Group.

More information

DIRECT INTEGRATION GUIDE DIRECT INTEGRATION GUIDE. Version: 9.16

DIRECT INTEGRATION GUIDE DIRECT INTEGRATION GUIDE. Version: 9.16 DIRECT Version: 9.16-1 - 1 Direct HTTP Integration... 4 1.1 About This Guide... 4 1.2 Integration Disclaimer... 4 1.3 Terminology... 5 1.4 Pre-Requisites... 6 1.5 Integration Details... 7 1.6 Authentication...

More information

MySagePay. User Manual. Page 1 of 48

MySagePay. User Manual. Page 1 of 48 MySagePay User Manual Page 1 of 48 Contents About this guide... 4 Getting started... 5 Online help... 5 Accessing MySagePay... 5 Supported browsers... 5 The Administrator account... 5 Creating user accounts...

More information

How To Pay With Worldpay (Hosted Call Centre)

How To Pay With Worldpay (Hosted Call Centre) Corporate Gateway Mail and Telephone Order Payment Service (Hosted Call Centre) Guide V4.0 June 2014 Use this guide to: Learn how to use the Mail and Telephone Order Payment service (Hosted Call Centre)

More information

I. Payment request by WEB merchant II. Payment request by WEB merchant (direct credit card payment) III. Payment request - "Free transfer"

I. Payment request by WEB merchant II. Payment request by WEB merchant (direct credit card payment) III. Payment request - Free transfer epay.bg communication package for merchants I. Payment request by WEB merchant II. Payment request by WEB merchant (direct credit card payment) III. Payment request - "Free transfer" epay.bg communication

More information

UPG plc Atlas Technical Integration Guide

UPG plc Atlas Technical Integration Guide UPG plc Atlas Technical Integration Guide Version 13.8.16 Released Aug 2013 Description Integrating your website or payment system into the UPG plc Atlas ecommerce gateway platform UPG Plc. version 13.8.16

More information

Table of Contents. Revision 2.0-2 -

Table of Contents. Revision 2.0-2 - Table of Contents Introduction...3 Payment Processing: How it Works...4 Immediate Transaction Processing...5 Delayed Transaction Processing...7 Delayed Transaction Processing: Phase 1 - Authorization...7

More information

Secure XML API Integration Guide. (with FraudGuard add in)

Secure XML API Integration Guide. (with FraudGuard add in) Secure XML API Integration Guide (with FraudGuard add in) Document Control This is a control document DESCRIPTION Secure XML API Integration Guide (with FraudGuard add in) CREATION DATE 02/04/2007 CREATED

More information

1. Version Control... 1. 2. Introduction... 1. 3. Prerequisites... 1. 4. Payment Submission Workflow... 1. 5. Return Parameter for CallbackURL...

1. Version Control... 1. 2. Introduction... 1. 3. Prerequisites... 1. 4. Payment Submission Workflow... 1. 5. Return Parameter for CallbackURL... Penthouse, Unit 12 th Floor, API For PaySec Merchants Configuration: Automated Clearing House (ACH) Version: 1.0.1 Status: Published Contents 1. Version Control... 1 2. Introduction... 1 3. Prerequisites...

More information

ipay Checkout API (IPC API)

ipay Checkout API (IPC API) ipay Checkout API (IPC API) Accepting e-commerce payments for merchants Version 2.1 Intercard Finance AD 2007 2013 Table of Contents Introduction... 9 Scope... 10 the merchant / commercial decision makers...

More information

ANZ egate Merchant Administration. Quick Reference Guide

ANZ egate Merchant Administration. Quick Reference Guide ANZ egate Merchant Administration Quick Reference Guide Purpose The purpose of this Quick Reference Guide is to provide the user with a quick reference to using the ANZ egate Merchant Administration. We

More information

AliPay International Services

AliPay International Services Title Page AliPay International Services Using the Simple Order API September 2015 CyberSource Corporation HQ P.O. Box 8999 San Francisco, CA 94128-8999 Phone: 800-530-9095 CyberSource Contact Information

More information

MasterCard In tern et Gateway Service (MIGS)

MasterCard In tern et Gateway Service (MIGS) MasterCard Internet Gateway Service Master Card Inter nati onal MasterCard In tern et Gateway Service (MIGS) Virtual Payment Client Integration Guide Prepared By: Patrick Hayes Department: Principal Consultant,

More information

Virtual Terminal User Guide

Virtual Terminal User Guide Virtual Terminal User Guide For Professional Use Only Currently only available in English. A usage Professional Uniquement Disponible en Anglais uniquement pour l'instant. Last Updated: 2005 PayPal Virtual

More information

HOSTED INTEGRATION GUIDE HOSTED INTEGRATION GUIDE. Version: 9.16

HOSTED INTEGRATION GUIDE HOSTED INTEGRATION GUIDE. Version: 9.16 HOSTED Version: 9.16-1 - 1 Hosted HTTP Integration... 4 1.1 About This Guide... 4 1.2 Integration Disclaimer... 4 1.3 Terminology... 5 1.4 Pre-Requisites... 6 1.5 Integration Details... 7 1.6 Authentication...

More information

Audi Virtual Payment Client Integration Manual

Audi Virtual Payment Client Integration Manual Audi Virtual Payment Client Integration Manual 1 Table of Contents Table of Contents... 2 Introduction:... 3 Intended Audience:... 3 AVPC Payment Requests Processing... 3 AVPC required parameters... 3

More information

CRM4M Accounting Set Up and Miscellaneous Accounting Guide Rev. 10/17/2008 rb

CRM4M Accounting Set Up and Miscellaneous Accounting Guide Rev. 10/17/2008 rb CRM4M Accounting Set Up and Miscellaneous Accounting Guide Rev. 10/17/2008 rb Topic Page Chart of Accounts 3 Creating a Batch Manually 8 Closing a Batch Manually 11 Cancellation Fees 17 Check Refunds 19

More information

API Integration Guide

API Integration Guide API Integration Guide INTEGRATION GUIDE VERSION 2.2 Table of Contents 1. Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5 1.2 Target Audience...5 1.3 Assistance...6 1.4 Technical Architecture...6

More information

PaperCut Payment Gateway Module CyberSource Quick Start Guide

PaperCut Payment Gateway Module CyberSource Quick Start Guide PaperCut Payment Gateway Module CyberSource Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up, and testing the

More information

Adyen MOTO Manual 'Mail Order / Telephone Order' Version 1.06 Adyen B.V.

Adyen MOTO Manual 'Mail Order / Telephone Order' Version 1.06 Adyen B.V. Adyen MOTO Manual 'Mail Order / Telephone Order' Version 1.06 Adyen B.V. Table of Contents 1 Introduction...3 Audience... 3 Changelog... 3 Requirements...3 Interfaces and Integration...4 Payment Methods...4

More information

Server Protocol and Integration Guideline (Protocol v3.00) Published Date 27/08/2013

Server Protocol and Integration Guideline (Protocol v3.00) Published Date 27/08/2013 Server Protocol and Integration Guideline (Protocol v3.00) Published Date 27/08/2013 Document Index Version History... 3 LEGAL NOTICE... 3 Welcome to the Sage Pay Server integration method... 4 Overview

More information