Card On File Payment

Description

The makeAPayment endpoint is used to submit a card on the file payment request. Requests are made using a Card On File Payment Method. The Card On File Payment Method is a unique token that is created by the Payment Processor/Acquirer, stored securely in their Vault, and is used to initiate a payment without entering the full card information.

Request

Endpoint

/ui/v3/makeAPayment

Method

POST
Content-Type: application/json
Authorization: Basic $TOKEN

Note

Replace $TOKEN in the request with the base64-encoded username/password combination in the format username:password.

Given a username of username and a password of password, the request header would appear as follows:

Content-Type: application/json
Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=

Attributes

A • is a child element, • • is a grandchild element, • • •  is a great-grandchild element.

ELEMENT DESCRIPTION FORMAT FIELD CONSTRAINTS
money Required

• amount Required

Amount
10.00 or 1000

The maximum Amount limit is 999,999.99
Commas are allowed while entering the value.
• currency Required
•• currencyCode Required

3-character currency code
Currency Codes Three character Standard ISO Currency Code
paymentType Required
• name Required

Name of Payment Type being used
Payment Types
consolidatedPayInfo Required

• payments Required

Array index
•• type Required

Type of payment method being used
• creditcard
• echeck
• pinlessdebitcard
• paypal
•• paymentMethodType Required

Payment method type name
Payment Method Types
•• cardNetworkName Required
Applies to credit card and debit card payments only.

Card network name
Card Networks
•• cardNumber Required
Applies to credit card, debit card, and eCheck payments only.

Card number
Last Four digits of Card/Account Number

1234
•• cvn Conditional
Required if Card Security Code is mandatory at the Processor level, otherwise Optional.
4 digits for American Express cards, 3 digits for others
•• subscriptionId Required
Required when using a saved/tokenized payment method

Subscription ID
1122334455667788
money Required

• amount Required

Amount
10.00 or 1000

The maximum Amount limit is 999,999.99
• currency Required
•• currencyCode Required

3-character currency code
Currency Codes
•• paymentGateway Required
••• name Required

Name of payment gateway processing the payment
Payment Gateways
•• payWith Required

saved payment method
• CARD_ON_FILE
paymentAction Required
•name Required

Name of Payment Action being used
• SALE
• PRE_AUTHORIZATION
transactionType Required
• name Required

Transaction Type being used
• SALE
• PRE_AUTHORIZATION
transactionCategory Required
• name Required

Transaction Category being used
Transaction Categories
membershipNumber Optional

Membership number of the user for whom the payment is being made
Ex: 123456 Membership Number can only contain digits and should be at least one digit long and cannot exceed 11 digits.
• productCodes Conditional

Array Index (the maximum array length is 5, can choose upto 5 product items)

Products or service Codes to which the payment has been made

Required when the Product/Services feature is enabled at the merchant level

NOTE: For Merchant specific configurations, please contact vela@datumtg.com.
Ex: ABCD123 Product Code must be at least 4 characters long.

Product Code cannot exceed 20 characters.
• productIds Conditional

Array Index (the maximum array length is 5, can choose upto 5 product items)

Product ID for each item.
100
• productQuantitys Conditional

Array Index (the maximum array length is 5, can choose upto 5 product items)

Quantity for each Product.

Required when the Multiple Quantity feature for Product/Services is enabled.
1, 2 etc.
• costPerUnits Optional

Array Index (the maximum array length is 5, can choose upto 5 product items)

Price per unit of each product.
8.99
• subTotals Optional

Array Index (the maximum array length is 5, can choose upto 5 product items)

Subtotal per product (qty × unit price)

Required when the Mulitple Quantity and/or Multiple Product/Service features are enabled.
17.98
• restrictions Optional

Array Index (the maximum array length is 5, can choose upto 5 product items)

Restrictions per product (if any)
Ex: No Onions.
• specialInstructions Optional

Array Index (the maximum array length is 5, can choose upto 5 product items)

Instructions per product (if any)
Ex: extra pillow; Double Chocolate.
bookingNumber Conditional

Booking or Transaction number related to the payment.

Required if the Product Type is LODGING
Ex: 123456 Field length depends upon merchant level configuration.

Cannot accept special characters.
checkInDate Conditional

Date on which the customer is checking in.

Required if the Product Type is LODGING
2024-03-01

Date format is dependent on the Merchant Configuration
Should be greater than the Current Date and less than Check-out Date.
checkOutDate Conditional

Date on which the customer is checking out

Required if the Product Type is LODGING
2024-04-01

Date format is dependent on the Merchant Configuration
Should be greater than Check-in Date.
merchantId Required

Merchant Id to which the user belongs
goodsAndServicesPurchaseType Conditional
• name Conditional

Required when the Processor is Chase Paymentech Netconnect
Goods and Services Purchase Types
emailAddress Optional

Email Address of the user
customerName Required

Name of the customer
Ex: John Smith Customer Name cannot exceed 50 characters

Credit Card Payment

Request (Existing Payment Method)

{
    "money": {
        "amount": 44.95,
        "currency": {
            "currencyCode": "DOP"
        }
    },
    "paymentType": {
        "name": "SINGLE_PAYMENT"
    },
    "consolidatedPayInfo": {
        "payments": [
            {
                "type": "creditcard",
                "paymentMethodType": "CREDIT_CARD",
                "cardNetworkName": "VISA",
                "subscriptionId": "1ies9fzeu1zjs",
                "billingAddress": {
                    "country": "USA"
                },
                "money": {
                    "amount": 44.95,
                    "currency": {
                        "currencyCode": "DOP"
                    }
                },
                "paymentGateway": {
                    "name": "FISERV_DATAWIRE_ISO_8583"
                },
                "payWith": "CARD_ON_FILE",
                "channel": {
                    "id": 265
                }
            }
        ]
    },
    "paymentCycle": null,
    "transactionType": {
        "name": "SALE"
    },
    "customerName": "Table 2",
    "transactionCategory": {
        "name": "CARD_NOT_PRESENT"
    },
    "paymentAction": {
        "name": "SALE"
    },
    "merchantId": "38",
    "userRole": "MERCHANT_ADMIN",
    "roomNumber": "",
    "productCounter": 2,
    "productCodes": [
        "APP-001",
        "DES-002",
        null,
        null,
        null
    ],
    "productIds": [
        215,
        238,
        null,
        null,
        null
    ],
    "productQuantitys": [
        2,
        3,
        null,
        null,
        null
    ],
    "costPerUnits": [
        8.99,
        8.99,
        0,
        0,
        0
    ],
    "subTotals": [
        17.98,
        26.97,
        0,
        0,
        0
    ],
    "restrictions": [
        "Allergens: Dairy",
        null,
        "",
        "",
        ""
    ],
    "specialInstructions": [
        "Fully Cooked",
        "Extra Chocolate",
        "",
        "",
        ""
    ],
    "showProduct": [
        false,
        true,
        false,
        false,
        false
    ],
    "sameAsUserAddress": [
        false,
        false
    ],
    "imagesBase64": [
        null,
        null
    ]
}

Response (Existing Payment Method)

{
    "tiList": [
        {
            "id": 35999,
            "originalOrderId": "100000009537",
            "pymtGtwyRefNumber": "015240113549935",
            "authCode": "OK160C",
            "parentPymtGtwyRefNumber": null,
            "paymentGateway": {
                "value": "Fiserv (Datawire & Global ISO-8583 & Nashville)",
                "name": "FISERV_DATAWIRE_ISO_8583"
            },
            "money": {
                "amount": 44.95,
                "currency": {
                    "id": 48,
                    "currencyCode": "DOP",
                    "currencyText": "Dominican Peso",
                    "currencySymbol": "₱",
                    "fractionalUnit": "Centavo",
                    "currencyExponent": "2",
                    "supportedByVisaCheckout": false,
                    "createdDateTime": 1754456477000,
                    "isoNumericCode": "214",
                    "isoCountryCode": "214",
                    "alpha2CountryCode": "DO"
                }
            },
            "orderId": "100000009537",
            "splitPaymentsTxnSequence": "2",
            "encryptedPaymentMethod": "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",
            "paymentMethodType": {
                "value": "VISA",
                "name": "VISA"
            },
            "encodedMetaData": null,
            "responseMsg": "APPROVAL",
            "responseCode": "00",
            "createdDateTime": 1756400275000,
            "lastUpdatedDateTime": null,
            "initiatedDateTime": 1756400274000,
            "transactionStatus": {
                "name": "SUCCESS"
            },
            "channel": {
                "id": 265,
                "channelName": "ABC Company-Fiserv ISO",
                "channelStatus": {
                    "name": "ACTIVE"
                },
                "channelType": {
                    "name": "EXTERNAL"
                },
                "createdDateTime": 1754420455000,
                "merchantId": 38,
                "lockedDateTime": null,
                "lockedByUserId": null,
                "createdUserId": 1,
                "lastModifiedUserId": 1,
                "industryType": {
                    "name": "ECOMMERCE"
                },
                "allowCashAsPaymentMethodInd": false,
                "allowMoneyOrderAsPaymentMethodInd": false,
                "allowPaperCheckAsPaymentMethodInd": false,
                "allowEStoreCreditAsPaymentMethodInd": false,
                "paymentMethods": [
                    {
                        "id": 3035,
                        "paymentMethodType": {
                            "value": "Debit Card",
                            "name": "PIN_LESS_DEBIT_CARD"
                        },
                        "paymentGateway": {
                            "value": "Fiserv (Datawire & Global ISO-8583 & Nashville)",
                            "name": "FISERV_DATAWIRE_ISO_8583"
                        },
                        "cardBrand": {
                            "value": "VISA Debit",
                            "name": "VISA_DEBIT"
                        },
                        "cardId": 1220,
                        "createdUserId": 1,
                        "lastModifiedUserId": 1,
                        "createdDateTime": 1754420455000,
                        "lastUpdatedDateTime": null,
                        "position": 157,
                        "merchantId": 38
                    },
                    {
                        "id": 3026,
                        "paymentMethodType": {
                            "value": "Credit Card",
                            "name": "CREDIT_CARD"
                        },
                        "paymentGateway": {
                            "value": "Fiserv (Datawire & Global ISO-8583 & Nashville)",
                            "name": "FISERV_DATAWIRE_ISO_8583"
                        },
                        "cardBrand": {
                            "value": "VISA",
                            "name": "VISA"
                        },
                        "cardId": 1201,
                        "createdUserId": 1,
                        "lastModifiedUserId": 1,
                        "createdDateTime": 1754420455000,
                        "lastUpdatedDateTime": null,
                        "position": 148,
                        "merchantId": 38
                    }
                ],
                "allowDynamicRoutingCapabilityInd": false,
                "secondaryPaymentGateway": null,
                "tertiaryPaymentGateway": null,
                "forExProvider": {
                    "value": "Wise.com",
                    "name": "WISE_COM"
                },
                "userCount": null,
                "assignedPaymentMethods": null,
                "message": null,
                "paymentMethodsCount": null,
                "merchantName": null
            },
            "transactionType": {
                "name": "SALE"
            },
            "batchStatus": {
                "name": "PROCESSED"
            },
            "lockedDateTime": null,
            "lockedByUserId": null,
            "createdUser": {
                "country": "DOM",
                "addressLine1": "APT POSTAL 106",
                "addressLine2": "",
                "addressLine3": "",
                "city": "Higuey",
                "state": "AL",
                "zipCode": "23000",
                "streetNumber": null,
                "streetName": null,
                "id": 1133,
                "userName": "madmin.restaurants",
                "password": "$2a$11$Jz5Ro9S5/LEiGW8fR1lVKOLK8RJns91qYWAmL2eTtqfyMLN8KwPjW",
                "temporaryPassword": null,
                "temporaryPasswordCreatedDateTime": null,
                "status": {
                    "name": "ACTIVE"
                },
                "firstName": "Madmin",
                "lastName": "Restaurants",
                "phone": "",
                "mobile": "",
                "fax": "",
                "jobTitle": "",
                "department": "",
                "roles": [
                    {
                        "id": 1860,
                        "roleType": {
                            "name": "MERCHANT_ADMIN"
                        },
                        "checked": true,
                        "lastModifiedUserId": null
                    }
                ],
                "userChannelMap": [
                    {
                        "id": 946,
                        "cardNotPresentChannel": {
                            "id": 265,
                            "channelName": "ABC Company-Fiserv ISO",
                            "channelStatus": {
                                "name": "ACTIVE"
                            },
                            "channelType": {
                                "name": "EXTERNAL"
                            },
                            "createdDateTime": 1754420455000,
                            "merchantId": 38,
                            "lockedDateTime": null,
                            "lockedByUserId": null,
                            "createdUserId": 1,
                            "lastModifiedUserId": 1,
                            "industryType": {
                                "name": "ECOMMERCE"
                            },
                            "allowCashAsPaymentMethodInd": false,
                            "allowMoneyOrderAsPaymentMethodInd": false,
                            "allowPaperCheckAsPaymentMethodInd": false,
                            "allowEStoreCreditAsPaymentMethodInd": false,
                            "paymentMethods": [
                                {
                                    "id": 3035,
                                    "paymentMethodType": {
                                        "value": "Debit Card",
                                        "name": "PIN_LESS_DEBIT_CARD"
                                    },
                                    "paymentGateway": {
                                        "value": "Fiserv (Datawire & Global ISO-8583 & Nashville)",
                                        "name": "FISERV_DATAWIRE_ISO_8583"
                                    },
                                    "cardBrand": {
                                        "value": "VISA Debit",
                                        "name": "VISA_DEBIT"
                                    },
                                    "cardId": 1220,
                                    "createdUserId": 1,
                                    "lastModifiedUserId": 1,
                                    "createdDateTime": 1754420455000,
                                    "lastUpdatedDateTime": null,
                                    "position": 157,
                                    "merchantId": 38
                                },
                                {
                                    "id": 3026,
                                    "paymentMethodType": {
                                        "value": "Credit Card",
                                        "name": "CREDIT_CARD"
                                    },
                                    "paymentGateway": {
                                        "value": "Fiserv (Datawire & Global ISO-8583 & Nashville)",
                                        "name": "FISERV_DATAWIRE_ISO_8583"
                                    },
                                    "cardBrand": {
                                        "value": "VISA",
                                        "name": "VISA"
                                    },
                                    "cardId": 1201,
                                    "createdUserId": 1,
                                    "lastModifiedUserId": 1,
                                    "createdDateTime": 1754420455000,
                                    "lastUpdatedDateTime": null,
                                    "position": 148,
                                    "merchantId": 38
                                }
                            ],
                            "allowDynamicRoutingCapabilityInd": false,
                            "secondaryPaymentGateway": null,
                            "tertiaryPaymentGateway": null,
                            "forExProvider": {
                                "value": "Wise.com",
                                "name": "WISE_COM"
                            },
                            "userCount": null,
                            "assignedPaymentMethods": null,
                            "message": null,
                            "paymentMethodsCount": null,
                            "merchantName": null
                        },
                        "cardPresentChannel": {
                            "id": 265,
                            "channelName": "ABC Company-Fiserv ISO",
                            "channelStatus": {
                                "name": "ACTIVE"
                            },
                            "channelType": {
                                "name": "EXTERNAL"
                            },
                            "createdDateTime": 1754420455000,
                            "merchantId": 38,
                            "lockedDateTime": null,
                            "lockedByUserId": null,
                            "createdUserId": 1,
                            "lastModifiedUserId": 1,
                            "industryType": {
                                "name": "ECOMMERCE"
                            },
                            "allowCashAsPaymentMethodInd": false,
                            "allowMoneyOrderAsPaymentMethodInd": false,
                            "allowPaperCheckAsPaymentMethodInd": false,
                            "allowEStoreCreditAsPaymentMethodInd": false,
                            "paymentMethods": [
                                {
                                    "id": 3035,
                                    "paymentMethodType": {
                                        "value": "Debit Card",
                                        "name": "PIN_LESS_DEBIT_CARD"
                                    },
                                    "paymentGateway": {
                                        "value": "Fiserv (Datawire & Global ISO-8583 & Nashville)",
                                        "name": "FISERV_DATAWIRE_ISO_8583"
                                    },
                                    "cardBrand": {
                                        "value": "VISA Debit",
                                        "name": "VISA_DEBIT"
                                    },
                                    "cardId": 1220,
                                    "createdUserId": 1,
                                    "lastModifiedUserId": 1,
                                    "createdDateTime": 1754420455000,
                                    "lastUpdatedDateTime": null,
                                    "position": 157,
                                    "merchantId": 38
                                },
                                {
                                    "id": 3026,
                                    "paymentMethodType": {
                                        "value": "Credit Card",
                                        "name": "CREDIT_CARD"
                                    },
                                    "paymentGateway": {
                                        "value": "Fiserv (Datawire & Global ISO-8583 & Nashville)",
                                        "name": "FISERV_DATAWIRE_ISO_8583"
                                    },
                                    "cardBrand": {
                                        "value": "VISA",
                                        "name": "VISA"
                                    },
                                    "cardId": 1201,
                                    "createdUserId": 1,
                                    "lastModifiedUserId": 1,
                                    "createdDateTime": 1754420455000,
                                    "lastUpdatedDateTime": null,
                                    "position": 148,
                                    "merchantId": 38
                                }
                            ],
                            "allowDynamicRoutingCapabilityInd": false,
                            "secondaryPaymentGateway": null,
                            "tertiaryPaymentGateway": null,
                            "forExProvider": {
                                "value": "Wise.com",
                                "name": "WISE_COM"
                            },
                            "userCount": null,
                            "assignedPaymentMethods": null,
                            "message": null,
                            "paymentMethodsCount": null,
                            "merchantName": null
                        },
                        "lastModifiedUserId": null
                    }
                ],
                "oldEmail": null,
                "email": "madmin.restaurants@email.com",
                "locale": {
                    "name": "en_US"
                },
                "firstLoginDateTime": 1754496115000,
                "lastLoginDateTime": 1756400156000,
                "securityQuestionsEnrolledInd": true,
                "createdUserId": 1,
                "lastModifiedUserId": 1133,
                "maximumAllowedLoginDays": -1,
                "organizationName": "ABC Company",
                "forceChangePasswordInd": false,
                "originalUserId": null,
                "loyaltyStatus": {
                    "name": "NOT_APPLICABLE"
                },
                "loyaltyRewardsNumber": null,
                "loyaltyEnrolledDateTime": null,
                "loyaltyTierLevel": {
                    "nickname": "None",
                    "name": "NONE"
                },
                "totalOutstandingLoyaltyPoints": null,
                "pendingLoyaltyPoints": null,
                "forgotPasswordGeneratedDateTime": null,
                "numberOfFailedLoginAttempts": 0,
                "numberOfFailedForgotPasswordAttempts": 0,
                "changePasswordDateTime": 1756388990000,
                "lockedDateTime": null,
                "lockedByUserId": null,
                "merchantId": 38,
                "createdDateTime": 1754426388000,
                "forceChangeSecurityQuestionsInd": false,
                "passwordNeverExpiresInd": false,
                "phoneCountryCallingCodeId": 1,
                "mobileCountryCallingCodeId": 1,
                "faxCountryCallingCodeId": 1,
                "acceptTermsOfUseAgreementInd": true,
                "acceptPrivacyPolicyAgreementInd": true,
                "namePrefix": null,
                "nameSuffix": null,
                "middleInitial": "",
                "paymentAction": {
                    "name": "PRE_AUTHORIZATION"
                },
                "mobilePhoneCarrierType": {
                    "emailDomain": "",
                    "value": "Select",
                    "countryCode": "UNKNOWN",
                    "name": "UNKNOWN"
                },
                "transactionCategory": {
                    "name": "CARD_NOT_PRESENT"
                },
                "textMessageType": {
                    "name": "SMS"
                },
                "customer": null,
                "oneTimePasscode": "59872958",
                "oneTimePasscodeCreatedDateTime": 1754496177000,
                "numberOfFailedOneTimePasscodeAttempts": 0,
                "gender": null,
                "lastLockedDateTime": null,
                "lockedInterval": {
                    "value": "None",
                    "name": "NONE"
                },
                "currencyCode": "DOP",
                "biometricsDeskoPentaBGRClientApplicationURL": null,
                "biometricsDeskoPenta4XCubeClientApplicationURL": null,
                "message": null,
                "customerId": null,
                "address": null,
                "fullName": null,
                "mobileWithCallingCode": null,
                "sessionId": null,
                "uiType": null,
                "customerName": null,
                "customerNumber": null,
                "geolocation": null,
                "currentPassword": null,
                "reEnterPassword": null,
                "reEnterEmail": null,
                "merchantName": null,
                "language": null,
                "merchantCode": null,
                "passwordAlreadyExists": false,
                "currentPasswordValid": false,
                "principal": null,
                "userSession": null,
                "selectedRoles": null,
                "numberOfInactiveLoginDays": null,
                "maskedEmail": null,
                "auditEventType": null,
                "requestAnotherOnetimePassword": false,
                "strFirstLoginDateTime": null,
                "strLastLoginDateTime": null,
                "strLoyaltyEnrolledDateTime": null,
                "displayFolioInformationInPaymentsModule": false,
                "temporaryPasswordValid": false
            },
            "transactionOwner": {
                "country": "DOM",
                "addressLine1": "APT POSTAL 106",
                "addressLine2": "",
                "addressLine3": "",
                "city": "Higuey",
                "state": "AL",
                "zipCode": "23000",
                "streetNumber": null,
                "streetName": null,
                "id": 1133,
                "userName": "madmin.restaurants",
                "password": "$2a$11$Jz5Ro9S5/LEiGW8fR1lVKOLK8RJns91qYWAmL2eTtqfyMLN8KwPjW",
                "temporaryPassword": null,
                "temporaryPasswordCreatedDateTime": null,
                "status": {
                    "name": "ACTIVE"
                },
                "firstName": "Madmin",
                "lastName": "Restaurants",
                "phone": "",
                "mobile": "",
                "fax": "",
                "jobTitle": "",
                "department": "",
                "roles": [
                    {
                        "id": 1860,
                        "roleType": {
                            "name": "MERCHANT_ADMIN"
                        },
                        "checked": true,
                        "lastModifiedUserId": null
                    }
                ],
                "userChannelMap": [
                    {
                        "id": 946,
                        "cardNotPresentChannel": {
                            "id": 265,
                            "channelName": "ABC Company-Fiserv ISO",
                            "channelStatus": {
                                "name": "ACTIVE"
                            },
                            "channelType": {
                                "name": "EXTERNAL"
                            },
                            "createdDateTime": 1754420455000,
                            "merchantId": 38,
                            "lockedDateTime": null,
                            "lockedByUserId": null,
                            "createdUserId": 1,
                            "lastModifiedUserId": 1,
                            "industryType": {
                                "name": "ECOMMERCE"
                            },
                            "allowCashAsPaymentMethodInd": false,
                            "allowMoneyOrderAsPaymentMethodInd": false,
                            "allowPaperCheckAsPaymentMethodInd": false,
                            "allowEStoreCreditAsPaymentMethodInd": false,
                            "paymentMethods": [
                                {
                                    "id": 3035,
                                    "paymentMethodType": {
                                        "value": "Debit Card",
                                        "name": "PIN_LESS_DEBIT_CARD"
                                    },
                                    "paymentGateway": {
                                        "value": "Fiserv (Datawire & Global ISO-8583 & Nashville)",
                                        "name": "FISERV_DATAWIRE_ISO_8583"
                                    },
                                    "cardBrand": {
                                        "value": "VISA Debit",
                                        "name": "VISA_DEBIT"
                                    },
                                    "cardId": 1220,
                                    "createdUserId": 1,
                                    "lastModifiedUserId": 1,
                                    "createdDateTime": 1754420455000,
                                    "lastUpdatedDateTime": null,
                                    "position": 157,
                                    "merchantId": 38
                                },
                                {
                                    "id": 3026,
                                    "paymentMethodType": {
                                        "value": "Credit Card",
                                        "name": "CREDIT_CARD"
                                    },
                                    "paymentGateway": {
                                        "value": "Fiserv (Datawire & Global ISO-8583 & Nashville)",
                                        "name": "FISERV_DATAWIRE_ISO_8583"
                                    },
                                    "cardBrand": {
                                        "value": "VISA",
                                        "name": "VISA"
                                    },
                                    "cardId": 1201,
                                    "createdUserId": 1,
                                    "lastModifiedUserId": 1,
                                    "createdDateTime": 1754420455000,
                                    "lastUpdatedDateTime": null,
                                    "position": 148,
                                    "merchantId": 38
                                }
                            ],
                            "allowDynamicRoutingCapabilityInd": false,
                            "secondaryPaymentGateway": null,
                            "tertiaryPaymentGateway": null,
                            "forExProvider": {
                                "value": "Wise.com",
                                "name": "WISE_COM"
                            },
                            "userCount": null,
                            "assignedPaymentMethods": null,
                            "message": null,
                            "paymentMethodsCount": null,
                            "merchantName": null
                        },
                        "cardPresentChannel": {
                            "id": 265,
                            "channelName": "ABC Company-Fiserv ISO",
                            "channelStatus": {
                                "name": "ACTIVE"
                            },
                            "channelType": {
                                "name": "EXTERNAL"
                            },
                            "createdDateTime": 1754420455000,
                            "merchantId": 38,
                            "lockedDateTime": null,
                            "lockedByUserId": null,
                            "createdUserId": 1,
                            "lastModifiedUserId": 1,
                            "industryType": {
                                "name": "ECOMMERCE"
                            },
                            "allowCashAsPaymentMethodInd": false,
                            "allowMoneyOrderAsPaymentMethodInd": false,
                            "allowPaperCheckAsPaymentMethodInd": false,
                            "allowEStoreCreditAsPaymentMethodInd": false,
                            "paymentMethods": [
                                {
                                    "id": 3035,
                                    "paymentMethodType": {
                                        "value": "Debit Card",
                                        "name": "PIN_LESS_DEBIT_CARD"
                                    },
                                    "paymentGateway": {
                                        "value": "Fiserv (Datawire & Global ISO-8583 & Nashville)",
                                        "name": "FISERV_DATAWIRE_ISO_8583"
                                    },
                                    "cardBrand": {
                                        "value": "VISA Debit",
                                        "name": "VISA_DEBIT"
                                    },
                                    "cardId": 1220,
                                    "createdUserId": 1,
                                    "lastModifiedUserId": 1,
                                    "createdDateTime": 1754420455000,
                                    "lastUpdatedDateTime": null,
                                    "position": 157,
                                    "merchantId": 38
                                },
                                {
                                    "id": 3026,
                                    "paymentMethodType": {
                                        "value": "Credit Card",
                                        "name": "CREDIT_CARD"
                                    },
                                    "paymentGateway": {
                                        "value": "Fiserv (Datawire & Global ISO-8583 & Nashville)",
                                        "name": "FISERV_DATAWIRE_ISO_8583"
                                    },
                                    "cardBrand": {
                                        "value": "VISA",
                                        "name": "VISA"
                                    },
                                    "cardId": 1201,
                                    "createdUserId": 1,
                                    "lastModifiedUserId": 1,
                                    "createdDateTime": 1754420455000,
                                    "lastUpdatedDateTime": null,
                                    "position": 148,
                                    "merchantId": 38
                                }
                            ],
                            "allowDynamicRoutingCapabilityInd": false,
                            "secondaryPaymentGateway": null,
                            "tertiaryPaymentGateway": null,
                            "forExProvider": {
                                "value": "Wise.com",
                                "name": "WISE_COM"
                            },
                            "userCount": null,
                            "assignedPaymentMethods": null,
                            "message": null,
                            "paymentMethodsCount": null,
                            "merchantName": null
                        },
                        "lastModifiedUserId": null
                    }
                ],
                "oldEmail": null,
                "email": "madmin.restaurants@email.com",
                "locale": {
                    "name": "en_US"
                },
                "firstLoginDateTime": 1754496115000,
                "lastLoginDateTime": 1756400156000,
                "securityQuestionsEnrolledInd": true,
                "createdUserId": 1,
                "lastModifiedUserId": 1133,
                "maximumAllowedLoginDays": -1,
                "organizationName": "ABC Company",
                "forceChangePasswordInd": false,
                "originalUserId": null,
                "loyaltyStatus": {
                    "name": "NOT_APPLICABLE"
                },
                "loyaltyRewardsNumber": null,
                "loyaltyEnrolledDateTime": null,
                "loyaltyTierLevel": {
                    "nickname": "None",
                    "name": "NONE"
                },
                "totalOutstandingLoyaltyPoints": null,
                "pendingLoyaltyPoints": null,
                "forgotPasswordGeneratedDateTime": null,
                "numberOfFailedLoginAttempts": 0,
                "numberOfFailedForgotPasswordAttempts": 0,
                "changePasswordDateTime": 1756388990000,
                "lockedDateTime": null,
                "lockedByUserId": null,
                "merchantId": 38,
                "createdDateTime": 1754426388000,
                "forceChangeSecurityQuestionsInd": false,
                "passwordNeverExpiresInd": false,
                "phoneCountryCallingCodeId": 1,
                "mobileCountryCallingCodeId": 1,
                "faxCountryCallingCodeId": 1,
                "acceptTermsOfUseAgreementInd": true,
                "acceptPrivacyPolicyAgreementInd": true,
                "namePrefix": null,
                "nameSuffix": null,
                "middleInitial": "",
                "paymentAction": {
                    "name": "PRE_AUTHORIZATION"
                },
                "mobilePhoneCarrierType": {
                    "emailDomain": "",
                    "value": "Select",
                    "countryCode": "UNKNOWN",
                    "name": "UNKNOWN"
                },
                "transactionCategory": {
                    "name": "CARD_NOT_PRESENT"
                },
                "textMessageType": {
                    "name": "SMS"
                },
                "customer": null,
                "oneTimePasscode": "59872958",
                "oneTimePasscodeCreatedDateTime": 1754496177000,
                "numberOfFailedOneTimePasscodeAttempts": 0,
                "gender": null,
                "lastLockedDateTime": null,
                "lockedInterval": {
                    "value": "None",
                    "name": "NONE"
                },
                "currencyCode": "DOP",
                "biometricsDeskoPentaBGRClientApplicationURL": null,
                "biometricsDeskoPenta4XCubeClientApplicationURL": null,
                "message": null,
                "customerId": null,
                "address": null,
                "fullName": null,
                "mobileWithCallingCode": null,
                "sessionId": null,
                "uiType": null,
                "customerName": null,
                "customerNumber": null,
                "geolocation": null,
                "currentPassword": null,
                "reEnterPassword": null,
                "reEnterEmail": null,
                "merchantName": null,
                "language": null,
                "merchantCode": null,
                "passwordAlreadyExists": false,
                "currentPasswordValid": false,
                "principal": null,
                "userSession": null,
                "selectedRoles": null,
                "numberOfInactiveLoginDays": null,
                "maskedEmail": null,
                "auditEventType": null,
                "requestAnotherOnetimePassword": false,
                "strFirstLoginDateTime": null,
                "strLastLoginDateTime": null,
                "strLoyaltyEnrolledDateTime": null,
                "displayFolioInformationInPaymentsModule": false,
                "temporaryPasswordValid": false
            },
            "lastModifiedUserId": null,
            "reconcileTransactionRefNumber": null,
            "paymentService2000Data": null,
            "batchID": null,
            "voidActionInd": false,
            "refundActionInd": false,
            "captureActionInd": false,
            "incrementalAuthActionInd": false,
            "reAuthActionInd": false,
            "paymentType": {
                "name": "SINGLE_PAYMENT"
            },
            "paymentCycle": null,
            "totalCapturedAmount": null,
            "surchargeAmount": null,
            "totalRefundedAmount": null,
            "refundStatus": {
                "name": "NONE"
            },
            "refundMethod": null,
            "totalVoidedAmount": null,
            "voidStatus": {
                "name": "NONE"
            },
            "incrementalAuthAmount": null,
            "reAuthAmount": null,
            "totalAuthAmount": null,
            "scheduledPaymentDateTime": null,
            "subscriptionId": "1ies9fzeu1zjs",
            "vcOrderId": null,
            "invoiceNumber": null,
            "customerNumber": null,
            "transactionCategory": {
                "name": "CARD_NOT_PRESENT"
            },
            "encryptedGeolocationInfo": null,
            "voidReason": null,
            "refundReason": null,
            "captureAmount": null,
            "voidAmount": null,
            "posEntryMode": {
                "name": "MANUAL_ENTRY_WIRED"
            },
            "merchant": {
                "id": 38,
                "merchantName": "ABC Company",
                "merchantDescription": "ABC Company",
                "addressLine1": "12000 Findley Rd",
                "addressLine2": "",
                "addressLine3": null,
                "city": "Johns Creek",
                "state": "GA",
                "zipCode": "30097",
                "country": "USA",
                "mailingAddressLine1": "12000 Findley Rd",
                "mailingAddressLine2": "",
                "mailingAddressLine3": null,
                "mailingCity": "Johns Creek",
                "mailingState": "GA",
                "mailingZipCode": "30097",
                "mailingCountry": "USA",
                "pointOfContact": "administrator",
                "pointOfContactJobTitle": "Manager",
                "pointOfContactDepartment": "Finance",
                "pointOfContactEmail": "no-reply-test@datumsoftware.com",
                "pointOfContactPhone": "6787402699",
                "pointOfContactMobile": "",
                "pointOfContactFax": "",
                "lastModifiedUserId": 1,
                "addressVerificationCheckInd": false,
                "cardVerificationCheckForCNPTransactionsInd": true,
                "cardVerificationCheckForTokenizedTransactionsInd": false,
                "loyaltyRewardsEnabledInd": false,
                "initialLoyaltyRewardsNumber": null,
                "passwordNeverExpiresInd": false,
                "passwordExpirationDays": 90,
                "passwordExpirationWarningDays": 5,
                "onetimePasscodeValdtyTimePeriod": 10,
                "phoneCountryCallingCodeId": 1,
                "mobileCountryCallingCodeId": 1,
                "faxCountryCallingCodeId": 1,
                "billingPresentmentEnabledInd": false,
                "displayInvoiceNumberInPaymentsModule": true,
                "adhocInvoicesEnabledInd": false,
                "displayMemoInPaymentsModule": false,
                "displayFolioInformationInPaymentsModule": false,
                "recurringPaymentsEnabledInd": false,
                "productsAndServicesEnabledInd": true,
                "namePrefix": null,
                "nameSuffix": null,
                "displayDigitalSignatureForCardPresentTransactions": true,
                "displayDigitalSignatureForCardNotPresentTransactions": false,
                "paymentTokenizationEnabledInd": true,
                "paymentsBatchAuthorizationEnabledInd": false,
                "paymentsBatchProcessingEnabledInd": false,
                "allowPaymentsWithoutLoggingIn": true,
                "allowUsersToSelfEnrollInd": false,
                "allowMultiCurrencyPricingInd": false,
                "allowDynamicCurrencyConversionInd": false,
                "mobilePhoneCarrierType": {
                    "emailDomain": "",
                    "value": "Select",
                    "countryCode": "UNKNOWN",
                    "name": "UNKNOWN"
                },
                "cardPresentTransactionsEnabledInd": true,
                "defaultCurrencyCode": "DOP",
                "settlementCurrencyCode": "DOP",
                "allowPreAuthorizationTransactionInd": true,
                "allowSaleTransactionInd": true,
                "softDescriptorsEnabledInd": false,
                "softDescriptorMerchantName": "",
                "softDescriptorProductDescription": "",
                "merchantStatus": {
                    "name": "ACTIVE"
                },
                "merchantURL": "https://ABC Company-test.payvela.com/ui/resources/login",
                "merchantDisplayTitle": "ABC Company",
                "merchantCode": "ABC Company",
                "brandingDirectory": "ABC Company",
                "sessionIdleTime": 900,
                "sessionTimeoutTime": 20,
                "keepaliveInterval": 300,
                "customerSupportInformation": "+1-809-686-5500",
                "merchantBccEmailAddress": "velaqaautomation@gmail.com",
                "abuseEmailAddress": "Abuse@datumsoftware.com",
                "locale": {
                    "name": "en_US"
                },
                "lateFeesEnabledInd": false,
                "lateFeesType": {
                    "name": "PERCENTAGE"
                },
                "lateFeesTier1FromNumOfDays": 1,
                "lateFeesTier1ToNumOfDays": 30,
                "lateFeesTier2FromNumOfDays": 31,
                "lateFeesTier2ToNumOfDays": 60,
                "lateFeesTier3FromNumOfDays": 61,
                "lateFeesTier3ToNumOfDays": 90,
                "tier1LateFees": 0,
                "tier2LateFees": 3,
                "tier3LateFees": 6,
                "waiveTheLateFeesEnabledInd": false,
                "maxNumOfTimesPerYearLateFeeCanBeWaived": {
                    "name": "ONCE"
                },
                "paymentApplicationURL": "https://ABC Company-test.payvela.com/ui/resources/login",
                "giftCardsEnabledInd": false,
                "minBookingNumberLength": 6,
                "maxBookingNumberLength": 9,
                "allowPartialPaymentsForInvoicesInd": false,
                "convenienceFeesEnabledInd": false,
                "creditCardsConvFeesType": {
                    "name": "PERCENTAGE"
                },
                "creditCardsConvFees": null,
                "industryType": {
                    "name": "LODGING"
                },
                "displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
                "displayChartOnDashboard": false,
                "reportsModuleEnabledInd": true,
                "displayLastXDaysOfPaymentTokensForCardOnFile": 45,
                "chartsDisplayTransactionRevenue": {
                    "name": "NONE"
                },
                "chartsGroupByPaymentMethods": {
                    "name": "NONE"
                },
                "chartsGroupByTransactionTypes": {
                    "name": "NONE"
                },
                "chartsGroupByProductsAndServices": {
                    "name": "NONE"
                },
                "chartsDateRangeType": {
                    "name": "TODAY"
                },
                "numOfDaysBetweenCheckinAndCurrentDate": 21,
                "smsSubscriptionType": {
                    "name": "FREE_VIA_SMTP"
                },
                "cardPresentManualEntryOnlyTransactionsEnabledInd": false,
                "cardNotPresentTransactionsEnabledInd": true,
                "splitPaymentsEnabledInd": true,
                "accountLookupEnabledInd": false,
                "nextGenHpiLocationLookup": "",
                "billingEmailRequiredForPayments": false,
                "cardholderNameRequiredForTransactions": true,
                "textMessageType": {
                    "name": "SMS"
                },
                "billingEnabledInd": false,
                "billingRevenueShareByPercentage": 20,
                "installmentPaymentsEnabledInd": false,
                "minNumberOfInstallments": 2,
                "maxNumberOfInstallments": 36,
                "settledTransactionsReportEnabledInd": true,
                "sendSettledTransactionsReportViaEmailEnabled": true,
                "summaryByTypeReportEnabledInd": true,
                "transactionSummaryReportEnabledInd": true,
                "settledTxnsReportEmailRecipients": "veqaautomation@gmail.com",
                "offlinePaymentActionsOnInvoicesEnabledInd": false,
                "qrCodeEnabledInd": false,
                "dateFormat": {
                    "value": "yyyy-MM-dd",
                    "name": "YYYY_MM_DD"
                },
                "dateTimeFormat": {
                    "value": "yyyy-MM-dd hh:mm a zzz",
                    "name": "YYYY_MM_DD_HH_MM_A_ZZZ"
                },
                "logoutSingleSignOnTime": 10,
                "reconciliationPlatformName": {
                    "value": "VELA® KDS",
                    "industryType": "RESTAURANT",
                    "name": "VELA_KDS"
                },
                "employerIdentificationNumber": "1323333332",
                "autoReconciliationEnabledInd": false,
                "customerSummaryEnabledInd": false,
                "surchargesEnabledInd": false,
                "surchargesByPercentage": 0,
                "onlineReceiptLinkEnabledInd": false,
                "maxNumOfFailedOneTimePasscodeAttempts": 3,
                "apiAccessEnabledInd": true,
                "enableDigitalIdOnMakeAPaymentPageInd": false,
                "barcodeScanningEnabledInd": false,
                "autoReconciliationFeesEnabledInd": false,
                "paperlessBillingEnabledInd": false,
                "multipleQuantityListingAllowedInd": true,
                "multipleProductsAndServicesAllowedInd": true,
                "processFullCaptureFundsInd": false,
                "paymentTokenPreferenceType": {
                    "name": "ACCOUNT_HOLDER_NAME"
                },
                "minimumPasswordLength": 10,
                "retainAmountOnAccountLookupInd": false,
                "merchantProperties": [
                    {
                        "id": 777,
                        "merchantPropertyType": {
                            "name": "PAYMENT_TOKEN_CONFIG"
                        },
                        "propertyName": "PURGE_ENABLED",
                        "propertyDescription": "Is payment tokens purge enabled",
                        "groupName": null,
                        "propertyStringValue": null,
                        "propertyIntValue": null,
                        "propertyBooleanValue": false,
                        "merchantPropertyStatus": {
                            "name": "ACTIVE"
                        },
                        "createdUserId": 1,
                        "lastModifiedUserId": null,
                        "lockedDateTime": null,
                        "lockedByUserId": null,
                        "createdDateTime": 1753287192000,
                        "lastUpdatedDateTime": null,
                        "message": null
                    },
                    {
                        "id": 776,
                        "merchantPropertyType": {
                            "name": "PAYMENT_TOKEN_CONFIG"
                        },
                        "propertyName": "RETENTION_DAYS",
                        "propertyDescription": "# of days to retain payment tokens",
                        "groupName": null,
                        "propertyStringValue": null,
                        "propertyIntValue": null,
                        "propertyBooleanValue": null,
                        "merchantPropertyStatus": {
                            "name": "ACTIVE"
                        },
                        "createdUserId": 1,
                        "lastModifiedUserId": null,
                        "lockedDateTime": null,
                        "lockedByUserId": null,
                        "createdDateTime": 1753287192000,
                        "lastUpdatedDateTime": null,
                        "message": null
                    }
                ],
                "merchantBillings": [],
                "merchantBillingModel2s": [],
                "minNumOfLowercaseAlphabetsInPassword": 1,
                "minNumOfUppercaseAlphabetsInPassword": 1,
                "minNumOfNumericsInPassword": 1,
                "minNumOfSpecialCharactersInPassword": 1,
                "passwordHistoryCount": 25,
                "maxNumOfInactiveDaysForUser": 90,
                "signUpUsersMaximumAllowedLoginDays": 99999,
                "serverTimeZone": {
                    "value": "America/New York",
                    "tzIdentifier": "America/New_York",
                    "utcOffsetSDT": "−05:00",
                    "utcOffsetDST": "−04:00",
                    "tzAbbreSDT": "EST",
                    "tzAbbreDST": "EDT",
                    "name": "AMERICA_NEW_YORK"
                },
                "merchantTimeZone": {
                    "value": "Atlantic Time (North America)",
                    "offset": "-04:00",
                    "name": "ATLANTIC_TIME"
                },
                "exportDailyTransactionsSftpInd": false,
                "deskoDocumentScanningInd": false,
                "exportSFTPDirectoryName": "velatest",
                "manifestationFileOriginationType": {
                    "name": "NONE"
                },
                "message": null,
                "address": null,
                "fullName": null,
                "activeUserCount": null,
                "activeCustomerCount": null,
                "paymentTokenPurgeEnabledInd": false,
                "paymentTokenPurgeDays": null,
                "language": null,
                "assignedCurrencies": null,
                "echeckConvFees": null,
                "echeckConvFeesType": {
                    "name": "FLAT"
                },
                "emvcompliantTransactionType": {
                    "name": "RELAXED"
                }
            },
            "memo": null,
            "partialAuthAmount": null,
            "retryTraceNumber": 108286,
            "lastFourDigitsOfAcctNum": "0026",
            "merchantNumber": "000039349410050",
            "digitalSignature": null,
            "goodsAndServicesPurchaseType": null,
            "checkInDate": null,
            "checkOutDate": null,
            "bookingNumber": null,
            "roomNumber": "",
            "groupName": null,
            "customerName": "Table 2",
            "merchantLocation": null,
            "customerId": null,
            "routingLevel": {
                "name": "PRIMARY"
            },
            "product": null,
            "productQuantity": 0,
            "totalRefundedQuantity": 0,
            "convenienceFees": null,
            "acquirerTerminalId": "01340065",
            "transactionStatusInformation": null,
            "applicationIdentifier": null,
            "terminalVerificationResults": null,
            "issuerApplicationData": null,
            "cardholderVerificationMethodResults": null,
            "macKSN": null,
            "issuerAuthenticationData": null,
            "issuerScriptTemplate1": null,
            "issuerScriptTemplate2": null,
            "applicationLabel": null,
            "fiservIPGTransactionId": null,
            "transactionDetails": [
                {
                    "id": 114726,
                    "fieldNumber": "63.SD.AR",
                    "fieldName": "ASSOCIATION_RESPONSE_CODE",
                    "fieldValue": "V000",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114719,
                    "fieldNumber": "63.SD.TC",
                    "fieldName": "TERMINAL_TYPE_CAPABILITY",
                    "fieldValue": "601100000000000",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114718,
                    "fieldNumber": "63.22.2",
                    "fieldName": "RESPONSE_DATA",
                    "fieldValue": "APPROVAL        ",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114716,
                    "fieldNumber": "63.SD.ZX",
                    "fieldName": "63.SD.ZX",
                    "fieldValue": "O",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114725,
                    "fieldNumber": "63.VI.2",
                    "fieldName": "CARD_LEVEL_RESPONSE_CODE",
                    "fieldValue": "C ",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114721,
                    "fieldNumber": "63.14.6",
                    "fieldName": "REQUESTED_PAYMENT_SERVICE_IND",
                    "fieldValue": " ",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114722,
                    "fieldNumber": "63.49.2",
                    "fieldName": "CARD_CODE_RESPONSE_VALUE",
                    "fieldValue": "M",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114713,
                    "fieldNumber": "63.14.2",
                    "fieldName": "AUTHORIZATION_CHARACTER_IND",
                    "fieldValue": "P",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114714,
                    "fieldNumber": "63.14.4",
                    "fieldName": "VALIDATION_CODE",
                    "fieldValue": "G558",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114723,
                    "fieldNumber": "63.14.7",
                    "fieldName": "FIRST_AUTHORIZED_AMOUNT",
                    "fieldValue": "000000000000",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114720,
                    "fieldNumber": "63.14.8",
                    "fieldName": "TOTAL_AUTHORIZED_AMOUNT",
                    "fieldValue": "000000000000",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114724,
                    "fieldNumber": "63.14.3",
                    "fieldName": "TRAN_ID",
                    "fieldValue": "015240113549935",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114717,
                    "fieldNumber": "63.14.5",
                    "fieldName": "MARKET_SPECIFIC_DATA_IND",
                    "fieldValue": "H",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                },
                {
                    "id": 114715,
                    "fieldNumber": "63.SD.AS",
                    "fieldName": "63.SD.AS",
                    "fieldValue": "C",
                    "createdDateTime": 1756400275000,
                    "lastUpdatedDateTime": null,
                    "createdUserId": 1133,
                    "lastModifiedUserId": null
                }
            ],
            "transactionProductInfos": [],
            "posTerminal": null,
            "qualifiedHealthcareAmount": null,
            "amountType": {
                "code": "",
                "name": "UNKNOWN"
            },
            "avsResultCode": null,
            "cvvResultCode": "M",
            "fiservLocalTransmissionDateTime": "082825125754",
            "numberOfInstallments": 0,
            "merchantCategoryCode": "3742",
            "membershipNumber": null,
            "loyaltyTierLevel": {
                "nickname": "None",
                "name": "NONE"
            },
            "field55EMVData": null,
            "captureMode": {
                "name": "HOST_CAPTURE"
            },
            "eightDigitBIN": "3df9b5b9392fda86a0c0f0d425679ea8740e972e3d2aad9b93c6ad77a2d3d22f",
            "binIssuingCountryCode": null,
            "cardNetworkTransactionId": "015240113549935",
            "recurrenceEndDate": null,
            "electronicCommerceIndicator": null,
            "salesOrderNumber": null,
            "purchaseOrderNumber": null,
            "addTokenAsPartOfPaymentSubmission": false,
            "vehicleLicensePlateNumber": null,
            "vehicleOwnershipType": null,
            "licenseIssuingCountry": null,
            "licenseIssuingState": null,
            "expiryMonth": "05",
            "expiryYear": "31",
            "encryptedUserBiometricInfo": null,
            "exchangeRate": null,
            "orderNumber": null,
            "orderStatus": null,
            "billingEmail": null,
            "multipleInvoicesAmountBreakdown": null,
            "returnURL": null,
            "cancelURL": null,
            "paymentRedirectURL": null,
            "cardType": null,
            "realex3DSecureVISAPit": "",
            "realex3DSecureURL": "",
            "realex3DSecurePaReq": "",
            "realex3DSecureEncodedMD": "",
            "realexRequestID": "",
            "capturePymtGtwyRefNumber": null,
            "geolocation": null,
            "paymentAction": null,
            "strCheckInDate": null,
            "strCheckOutDate": null,
            "strTransactionDateTime": null,
            "avsResponseStatus": null,
            "cvvResponseStatus": null,
            "profileSubscriptionId": null,
            "message": null,
            "hasTransactionDocuments": false,
            "releaseRemainingFundsInd": false,
            "departmentId": 0,
            "transactionProductInfoMap": {},
            "ipaymentMethod": null,
            "transactionDetailMap": {
                "63.VI.2": "C ",
                "63.22.2": "APPROVAL        ",
                "63.49.2": "M",
                "63.SD.ZX": "O",
                "63.14.8": "000000000000",
                "63.14.6": " ",
                "63.14.7": "000000000000",
                "63.14.4": "G558",
                "63.14.5": "H",
                "63.14.2": "P",
                "63.14.3": "015240113549935",
                "63.SD.AR": "V000",
                "63.SD.AS": "C",
                "63.SD.TC": "601100000000000"
            },
            "qrcodeBase64Image": null,
            "qrcodeCopyURL": null,
            "qrcodeBase64ImageString": null,
            "ssoenabledInd": false,
            "IFDSerialNumber": null
        }
    ]
}

Updated As Of Version 6.7.1.0