Credit Method
Submits a credit transaction.
Syntax
fdmsrcecommerce.credit([callback])
Callback
The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).
The callback for this method is defined as:
function(err){ }
'err' is the error that occurred. If there was no error, then 'err' is 'null'.
'err' has 2 properties which hold detailed information:
err.code err.message
Remarks
This method credits funds to the card. This is not based on a previous transaction. This may be used to return funds to a card if a previous transaction has already been settled. To void or cancel a transaction before it has been settled call Reverse instead.
After this method returns check the value of ResponseCode to determine if the transaction was successful.
Important Note: You must ping your list of service provider URLs and update the URL property to the service provider with the shortest response time every 100 transactions, as well as when your application initially starts. This is not a normal ICMP ping - to determine the fastest transaction URL you must use the special Ping method inside the FDMSRegister class. (You may update your list of service provider URLs with the FDMSRegister class's ServiceDiscovery method).
ECommerce Credit Code Example
fdmsrcecommerce.IndustryType = FdmsrcecommerceIndustryTypes.fitEcommerce; fdmsrcecommerce.TPPID = "AAA000"; fdmsrcecommerce.MerchantTerminalNumber = "00000001"; fdmsrcecommerce.MerchantId = "1234"; fdmsrcecommerce.GroupId = "20001"; fdmsrcecommerce.DatawireId = "00011122233344455566"; fdmsrcecommerce.ApplicationId = "RAPIDCONNECTVXN"; fdmsrcecommerce.URL = "https://stg.dw.us.fdcnet.biz/rc"; fdmsrcecommerce.STAN = "112"; fdmsrcecommerce.TransactionNumber = "120013"; fdmsrcecommerce.OrderNumber = "12000503"; fdmsrcecommerce.ReferenceNumber = "123"; fdmsrcecommerce.STAN = "112"; fdmsrcecommerce.TransactionNumber = "123"; fdmsrcecommerce.ReferenceNumber = "123456"; fdmsrcecommerce.OrderNumber = "1234"; fdmsrcecommerce.Card.Number = "36185900055556"; fdmsrcecommerce.Card.ExpMonth = 4; fdmsrcecommerce.Card.ExpYear = 2016; fdmsrcecommerce.TransactionAmount = "1200"; fdmsrcecommerce.Credit();;