Direct Payment Integrator V6 - Online Help
Direct Payment Integrator V6
Questions / Feedback?

GetHotelDataAggregate Method

Returns an aggregate containing the Hotel/Lodging data of this transaction, which is then used for reversals.

Syntax

fdmshotel.getHotelDataAggregate([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, data){ }

'err' is the error that occurred. If there was no error, then 'err' is 'null'.

'data' is the value returned by the method.

'err' has 2 properties which hold detailed information:

err.code
err.message

Remarks

This method returns an aggregate containing all of the hotel/lodging industry data to reverse a transaction. This aggregate must be passed to the FDMSReversal class's HotelDataAggregate config in order to reverse the transaction.

The industry data included in the aggregate is:

An example of how this method is used is shown below:


  FDMSRetail.Authorize()
  If (FDMSRetail.ResponseCaptureFlag = True) Then
  	' Set Additional FDMSReverse properties as shown within the FDMSReverse help 
    FDMSReverse.Config("HotelDataAggregate=" & FDMSRetail.GetHotelDataAggregate())
    FDMSReverse.Reverse()
  End If

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 6.0.6240.0