Make a Payment
Description¶
ThemakeAPayment
endpoint is used to submit a payment request to a payment gateway. An "authorization" (auth) will be submitted for credit cards or PINless debit cards used as a credit card. The Transaction will be processed as a "sale" for an eCheck, PINless Debit Cards, Bancario Boleto and Pix Payment Methods.
Requests can be made using a "new payment method" where the user enters manually.
Request¶
Endpoint¶
/ui/v2/makeAPayment
Method¶
POST
Header¶
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 |
---|---|---|
money | Required Array index |
|
• amount | Required Payment amount |
10.00 The maximum Amount limit is 999,999.99 |
• currency | Required array index |
|
•• currencyCode | Required 3-character currency code |
Currency Codes |
paymentType | Required | |
• name | Required Name of Payment Type being used |
Payment Types |
paymentAction | Required Name of the Payment Action being used |
|
• name | Required Name of Payment Action being used |
• PRE_AUTHORIZATION • SALE • FORCE_CAPTURE • ZERO_DOLLAR_AUTH |
consolidatedPayInfo | Required Array index |
|
• 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 | Conditional Applies to credit card and debit card payments only. Card network name |
Card Networks |
•• nameOnCard | Conditional Required for Realex Cardholder's name |
John Smith |
•• firstName | Conditional Required for CyberSource, PayPal Cardholder's first name |
John |
•• lastName | Conditional Required for CyberSource, PayPal Card holder's last name |
Smith |
•• cardNumber | Conditional Required for credit cards or PINless debit cards Credit/debit card number |
4111111111111111 |
•• expiryMonth | Conditional Required for credit cards or PINless debit cards 2-digit expiration month |
08 |
•• expiryYear | Conditional Required for credit cards or PINless debit cards 2-digit expiration year |
20 |
•• CVN | Conditional Required if Card Security Code validation is enabled CVV/CVN |
4 digits for American Express cards, 3 digits for others |
•• processDebitOrCredit | Conditional Required for PINless debit Whether a transaction will be processed as credit or debit |
• debit • credit |
•• subscriptionId | Conditional Required if using a saved/tokenized payment method Subscription ID |
1122334455667788 |
•• routingNumber | Conditional Required for eCheck Bank account's routing number |
0111111111 |
•• accountNumber | Conditional Required for eCheck Account Number |
1234567890 |
•• accountHolderName | Conditional Required for eCheck Account Holder Name |
John Smith |
•• bankName | Optional Optional for eCheck Bank name |
Test Bank |
•• accountType | Conditional Optional for eCheck Type of bank account |
Account Types |
•• dateOfBirth | Conditional Optional for eCheck Date of Birth of the Account Holder |
2000-04-13 |
•• driversLicenseNumber | Conditional Optional for eCheck Driver's License Number |
123123123 |
•• driversLicenseState | Conditional Optional for eCheck Driver's License State |
GA |
•• issueDate | Conditional Optional for Money Order Issue date for Money Order |
2023-04-06 |
•• checkNumber | Conditional Optional for Money Order |
1234567 |
•• moneyOrderNumber | Conditional Optional for Money Order |
123456789 |
•• billingAddress | Conditional Required if billing address validation is enabled Array index |
|
••• country | Conditional Required if billing address validation is enabled Billing address country which is a 3 character alpha code |
Country Code |
••• state | Conditional Required if billing address validation is enabled Billing address state which is a 2 character alpha code |
States/Provinces |
••• city | Conditional Required if billing address validation is enabled Billing address city |
Atlanta |
••• addressLine1 | Conditional Required if billing address validation is enabled Street address |
123 Maple Street |
••• addressLine2 | Optional Apartment/suite number |
Apt. 2A |
••• streetName | Optional Address that is related to the card used. when the selected country is Brazil |
e.g., Near XXXX |
••• streetNumber | Optional Address that is related to the card used. when the selected country is Brazil |
e.g., Near 1234 |
••• zipCode | Conditional Required if billing address validation is enabled Billing address ZIP/postal code |
12345 |
•• money | Required Array index |
|
••• amount | Required Amount |
10.00 or 1000 Include decimal (e.g., 10.00) for CyberSource, omit (e.g., 1000) for Realex |
••• currency | Required Array index |
|
•••• currencyCode | Required 3-character currency code |
Currency Codes |
•• paymentGatewayType | Required Array index |
|
••• name | Required Name of payment gateway processing the payment |
Payment Gateways |
•• payWith | Required New or saved payment method |
• NEW_PAYMENT_METHOD • EXISTING_PAYMENT_METHOD |
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 |
productCode | Conditonal Product or service Code 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 |
checkInDate | Conditional Date on which the customer is checking in. Required if the Product Type is LODGING |
2024-01-01 Date format is dependent on the Merchant Configuration |
checkOutDate | Condtional Date on which the customer is checking out. Required if the Product Type is LODGING |
2024-01-04 Date format is dependent on the Merchant Configuration |
bookingNumber | Conditional Booking or the Transaction Number of the payment. Required if the Product Type is LODGING |
123456 |
emailAddress | Optional Email Address of the user |
|
goodsAndServicesPurchaseType | Conditional | |
• name | Conditional Required when the Processor is Chase Paymentech Netconnect |
Goods and Services Purchase Types |
customerName | Required Name of the customer |
Ex: John Smith |
Credit Card Payment¶
Request (New Payment Method)¶
{
"money": {
"amount": 10000,
"amountDue": "",
"currency": {
"currencyCode": "DOP",
"isoNumericCode": "214"
}
},
"paymentType": {
"name": "SINGLE_PAYMENT"
},
"consolidatedPayInfo": {
"payments": [
{
"type": "creditcard",
"paymentMethodType": "CREDIT_CARD",
"cardNetworkName": "VISA",
"nameOnCard": "John Smith",
"firstName": "",
"lastName": "",
"companyName": "",
"cardNumber": "4012000033330026",
"expiryMonth": "04",
"expiryYear": "29",
"cvn": "123",
"cardSwipe": false,
"posKeyed": false,
"emvContact": false,
"geolocation": "{\"city\":\"Duluth\",\"country\":{\"code\":\"US\",\"name\":\"United States\"},\"timestamp\":1720705811851,\"location\":{\"latitude\":34.0492288,\"longitude\":-84.1547776,\"address\":\"1266 Cauley Creek Overlook, Duluth, GA 30097, USA\",\"placeId\":\"ChIJ2-QCMeWY9YgR5JcynlD0SwM\",\"altitude\":null,\"accuracy_radius\":814.4449778094911,\"altitudeAccuracy\":null,\"heading\":null,\"speed\":null,\"time_zone\":\"America New_York\"},\"userAgent\":\"Mozilla 5.0 Windows NT 10.0; Win64; x64 AppleWebKit 537.36 KHTML, like Gecko Chrome 126.0.0.0 Safari 537.36\",\"ip\":\"71.140.147.103\",\"remoteHost\":\"\"}",
"processDebitOrCredit": "",
"acceptCreditSurcharge": "",
"refundMethod": {
"name": "ORIGINAL_PAYMENT_METHOD"
},
"refundStatus": {
"name": "NONE"
},
"voidStatus": {
"name": "NONE"
},
"orderId": "",
"subscriptionId": null,
"reEnterAccountNumber": "",
"accountHolderName": "",
"dateOfBirth": "",
"driversLicenseNumber": "",
"driversLicenseState": null,
"billingAddress": {
"country": "DOM",
"state": "AL",
"city": "Higuey",
"addressLine1": "ABC POSTAL 123",
"addressLine2": "",
"addressLine3": "",
"streetNumber": "",
"streetName": "",
"zipCode": "23000"
},
"money": {
"amount": 10000,
"currency": {
"currencyCode": "DOP",
"isoNumericCode": "214"
}
},
"paymentGateway": {
"name": "FISERV_DATAWIRE_ISO_8583"
},
"payWith": "CARD_NOT_PRESENT",
"posTerminalId": "",
"arqcData": "",
"serialNumber": "",
"trackData1": "",
"trackData2": "",
"encryptedTrack1": "",
"encryptedTrack2": "",
"encryptedTrack": false,
"posEntryMode": {
"name": "MANUAL_ENTRY_WIRED"
},
"ksn": "",
"posDeviceType": {
"name": "NONE"
},
"authCode": "",
"convenienceFees": 0,
"channel": {
"id": "86"
},
"issueDate": "",
"checkNumber": "",
"moneyOrderNumber": "",
"storeCreditNumber": "",
"storeCreditPIN": "",
"fallbackMSR": false,
"identityType": {
"name": null
},
"identityNumber": "",
"reEnterIdentityNumber": "",
"processAsQRCode": false
}
]
},
"paymentCycle": null,
"transactionType": {
"name": "PRE_AUTHORIZATION"
},
"ssoEnabledInd": false,
"threeDSecurePaReq": "",
"threeDSecureURL": "",
"threeDSecureVISAPit": "",
"realexRequestId": "",
"threeDSecureEncodedMD": "",
"password": "password",
"paymentMethodName": "",
"invoiceNumber": "3456788",
"salesOrderNumber": "",
"customerNumber": "",
"voidReason": "",
"refundReason": "",
"transactionCategory": {
"name": "CARD_NOT_PRESENT"
},
"paymentAction": {
"name": "PRE_AUTHORIZATION"
},
"memo": "",
"addTokenAsPartOfPaymentSubmission": false,
"merchantId": "11",
"userRole": "MERCHANT_ADMIN",
"uiType": "",
"emailAddress": "",
"reEnterEmailAddress": "",
"mobileNumber": "",
"reEnterMobileNumber": "",
"textMessageType": {
"name": "SMS"
},
"mobileCountryCallingCodeId": 66,
"mobilePhoneCarrierType": {
"name": "UNKNOWN",
"emailDomain": ""
},
"id": "",
"createdUserId": "",
"disablePaymentType": false,
"disableAmount": true,
"digitalSignature": "",
"agreeToPayInd": false,
"agreeToAcceptRefundInd": false,
"goodsAndServicesPurchaseType": {
"name": "SERVICE"
},
"checkInDate": "11-07-2024",
"checkOutDate": "12-07-2024",
"recurrenceEndDate": "",
"bookingNumber": "123123",
"groupName": "ABC Group",
"customerName": "John Smith",
"membershipNumber": "",
"merchantLocation": null,
"customerId": "",
"numberOfCards": "1",
"confirmationInd": false,
"productCode": "PUNC001",
"productQuantity": 1,
"geolocation": "{\"city\":\"Duluth\",\"country\":{\"code\":\"US\",\"name\":\"United States\"},\"timestamp\":1720705811851,\"location\":{\"latitude\":34.0492288,\"longitude\":-84.1547776,\"address\":\"1266 Cauley Creek Overlook, Duluth, GA 30097, USA\",\"placeId\":\"ChIJ2-QCMeWY9YgR5JcynlD0SwM\",\"altitude\":null,\"accuracy_radius\":814.4449778094911,\"altitudeAccuracy\":null,\"heading\":null,\"speed\":null,\"time_zone\":\"America New_York\"},\"userAgent\":\"Mozilla 5.0 Windows NT 10.0; Win64; x64 AppleWebKit 537.36 KHTML, like Gecko Chrome 126.0.0.0 Safari 537.36\",\"ip\":\"71.140.147.103\",\"remoteHost\":\"\"}",
"qualifiedHealthcareAmount": null,
"amountType": {
"name": "UNKNOWN"
},
"numberOfInstallments": null,
"gender": {
"name": "UNSPECIFIED"
},
"releaseRemainingFundsInd": false,
"sameAsUserAddress": [
false,
false
],
"imagesBase64": [
null,
null
]
}
Response¶
{
"tiList": [
{
"id": 33165,
"originalOrderId": "100000008539",
"pymtGtwyRefNumber": "014193692064116",
"authCode": "OK683C",
"parentPymtGtwyRefNumber": null,
"paymentGateway": {
"value": "Fiserv (Datawire & ISO-8583 & Nashville)",
"name": "FISERV_DATAWIRE_ISO_8583"
},
"money": {
"amount": 10000.000,
"currency": {
"id": 48,
"currencyCode": "DOP",
"currencyText": "Dominican Peso",
"currencySymbol": "₱",
"fractionalUnit": "Centavo",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": false,
"createdDateTime": 1608260909000,
"isoNumericCode": "214",
"isoCountryCode": "214"
}
},
"orderId": "100000008539",
"splitPaymentsTxnSequence": "2",
"encryptedPaymentMethod": "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",
"paymentMethodType": {
"value": "VISA",
"name": "VISA"
},
"encodedMetaData": null,
"responseMsg": "APPROVAL",
"responseCode": "00",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"initiatedDateTime": 1720706233000,
"transactionStatus": {
"name": "SUCCESS"
},
"channel": {
"id": 86,
"channelName": "Fiserv-ecommerce",
"channelStatus": {
"name": "ACTIVE"
},
"channelType": {
"name": "EXTERNAL"
},
"createdDateTime": 1568119974000,
"merchantId": 11,
"lockedDateTime": null,
"lockedByUserId": null,
"createdUserId": 1,
"lastModifiedUserId": 586,
"industryType": {
"name": "ECOMMERCE"
},
"allowCashAsPaymentMethodInd": false,
"allowMoneyOrderAsPaymentMethodInd": false,
"allowPaperCheckAsPaymentMethodInd": false,
"allowEStoreCreditAsPaymentMethodInd": false,
"paymentMethods": [
{
"id": 2547,
"paymentMethodType": {
"value": "Google Pay",
"name": "GOOGLE_PAY"
},
"paymentGateway": {
"value": "Authorize.Net",
"name": "AUTHORIZENET"
},
"cardBrand": {
"value": "Google Pay",
"name": "GOOGLE_PAY"
},
"cardId": null,
"createdUserId": 631,
"lastModifiedUserId": 586,
"createdDateTime": 1674443819000,
"lastUpdatedDateTime": null,
"position": 0
},
{
"id": 706,
"paymentMethodType": {
"value": "Debit Card",
"name": "PIN_LESS_DEBIT_CARD"
},
"paymentGateway": {
"value": "Fiserv (Datawire & ISO-8583 & Nashville)",
"name": "FISERV_DATAWIRE_ISO_8583"
},
"cardBrand": {
"value": "VISA Debit",
"name": "VISA_DEBIT"
},
"cardId": 1220,
"createdUserId": 1,
"lastModifiedUserId": 586,
"createdDateTime": 1568119974000,
"lastUpdatedDateTime": 1599098866000,
"position": 65
},
{
"id": 698,
"paymentMethodType": {
"value": "Credit Card",
"name": "CREDIT_CARD"
},
"paymentGateway": {
"value": "Fiserv (Datawire & ISO-8583 & Nashville)",
"name": "FISERV_DATAWIRE_ISO_8583"
},
"cardBrand": {
"value": "VISA",
"name": "VISA"
},
"cardId": 1201,
"createdUserId": 1,
"lastModifiedUserId": 586,
"createdDateTime": 1568119974000,
"lastUpdatedDateTime": 1599098866000,
"position": 57
},
{
"id": 2548,
"paymentMethodType": {
"value": "Masterpass",
"name": "MASTERPASS"
},
"paymentGateway": {
"value": "Cielo (E-commerce) 3.0",
"name": "CIELO_ECOMMERCE"
},
"cardBrand": {
"value": "Masterpass",
"name": "MASTERPASS"
},
"cardId": null,
"createdUserId": 631,
"lastModifiedUserId": 586,
"createdDateTime": 1674443859000,
"lastUpdatedDateTime": null,
"position": 80
}
],
"allowDynamicRoutingCapabilityInd": false,
"secondaryPaymentGateway": null,
"tertiaryPaymentGateway": null,
"userCount": null,
"assignedPaymentMethods": null,
"message": null,
"paymentMethodsCount": null,
"merchantName": null
},
"transactionType": {
"name": "PRE_AUTHORIZATION"
},
"batchStatus": {
"name": "NEW"
},
"lockedDateTime": null,
"lockedByUserId": null,
"createdUserId": 629,
"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": null,
"transactionOwnerId": 629,
"vcOrderId": null,
"invoiceNumber": "3456788",
"customerNumber": "",
"transactionCategory": {
"name": "CARD_NOT_PRESENT"
},
"encryptedGeolocationInfo": "i8VOiBH4rtgAtne4yrQsmmaH76WPa5kih1wtIbjdOvhfT7bl/Xogshsi78El66jk/16bP7lkGAPocHn1p/zKZVmO+mpwwcNASRSdAG+1ti4mRom5Zn48N+zSAfSUx8J5IYL8m6TjxcwqdotPuIfs8DLXi2kagPjmWedyrnBBRLqHZmGtgMiiRtmJbl8rteZUAvqqHgAtzuCd6ujeW7U5rMKYYT+rLFOps33etlm6VrAdszSgzWWLXG+mgmpXf8o9HFXbWcueAWZiEFAY+nsyw1hxYjl9hLA0k7H59Ks7LvvU5DZ5QsJdYghtSGQF5VqLVSPoGBkn/b4sWRTOS0ZTDcNHSvpoH4DzeRaDN/Vdf/hmaD8l2rozY5PdcI3Ix8MGcND/WU8CIgRLjjZVTCRjGKfpauehyzaoD0q++6ZweCOhR/F8Qh2nPob+EJAGX7wRuv6xmuqYa3DOePhkiC9cCJwwHgve/VkAjezrbU7RY7Kbqq6ToskhYFBZlbQ+fHNgA77kJ1ik9pCASS5uDkgt5qvkDRdp13fO4sE323IcA9UybsBzDoIAGU2pEHiucqf1015nuLJewExVno22nx9PEfMkTgce6+V+0DY37mi3sDkXvrib7eDviSxBRaBjJqWz8ESXQ1WC7tlItmn1Up1CLZISU7bGsyrxvPO7ZvsocURn1AJwp7H1gP9F9TAYqe2encdNbIpsh+zzeN2wRD+iDyNcOZ2j4h3aBj/Sc3D4pe0=",
"voidReason": "",
"refundReason": "",
"captureAmount": null,
"voidAmount": null,
"posEntryMode": {
"name": "MANUAL_ENTRY_WIRED"
},
"merchantId": 11,
"memo": "",
"partialAuthAmount": null,
"retryTraceNumber": 107342,
"lastFourDigitsOfAcctNum": "0026",
"merchantNumber": "000039349410050",
"digitalSignature": null,
"goodsAndServicesPurchaseType": {
"indicator": "",
"name": "SERVICE"
},
"checkInDate": 1720670400000,
"checkOutDate": 1720756800000,
"bookingNumber": "123123",
"groupName": "ABC Group",
"customerName": "John Smith",
"merchantLocation": null,
"customerId": null,
"routingLevel": {
"name": "PRIMARY"
},
"productCode": "PUNC001",
"productQuantity": 1,
"totalRefundedQuantity": 0,
"convenienceFees": 0.000,
"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": 99635,
"fieldNumber": "63.14.6",
"fieldName": "REQUESTED_PAYMENT_SERVICE_IND",
"fieldValue": " ",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99643,
"fieldNumber": "63.SD.XZ",
"fieldName": "63.SD.XZ",
"fieldValue": "C",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99640,
"fieldNumber": "63.SD.TC",
"fieldName": "TERMINAL_TYPE_CAPABILITY",
"fieldValue": "601100000000000",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99642,
"fieldNumber": "63.49.2",
"fieldName": "CARD_CODE_RESPONSE_VALUE",
"fieldValue": "M",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99634,
"fieldNumber": "63.14.4",
"fieldName": "VALIDATION_CODE",
"fieldValue": "G324",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99631,
"fieldNumber": "63.22.2",
"fieldName": "RESPONSE_DATA",
"fieldValue": "APPROVAL ",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99638,
"fieldNumber": "63.SD.AR",
"fieldName": "ASSOCIATION_RESPONSE_CODE",
"fieldValue": "V000",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99632,
"fieldNumber": "63.VI.2",
"fieldName": "CARD_LEVEL_RESPONSE_CODE",
"fieldValue": "C ",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99637,
"fieldNumber": "63.SD.AS",
"fieldName": "63.SD.AS",
"fieldValue": "C",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99630,
"fieldNumber": "63.14.5",
"fieldName": "MARKET_SPECIFIC_DATA_IND",
"fieldValue": "H",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99636,
"fieldNumber": "63.14.8",
"fieldName": "TOTAL_AUTHORIZED_AMOUNT",
"fieldValue": "000000000000",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99641,
"fieldNumber": "63.14.2",
"fieldName": "AUTHORIZATION_CHARACTER_IND",
"fieldValue": "P",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99639,
"fieldNumber": "63.14.7",
"fieldName": "FIRST_AUTHORIZED_AMOUNT",
"fieldValue": "000000000000",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
},
{
"id": 99633,
"fieldNumber": "63.14.3",
"fieldName": "TRAN_ID",
"fieldValue": "014193692064116",
"createdDateTime": 1720706234000,
"lastUpdatedDateTime": null,
"createdUserId": 629,
"lastModifiedUserId": null
}
],
"posTerminalId": null,
"qualifiedHealthcareAmount": null,
"amountType": {
"code": "",
"name": "UNKNOWN"
},
"avsResultCode": "M",
"cvvResultCode": "M",
"fiservLocalTransmissionDateTime": "071124095713",
"numberOfInstallments": 0,
"merchantCategoryCode": "3742",
"membershipNumber": "",
"field55EMVData": null,
"captureMode": {
"name": "HOST_CAPTURE"
},
"eightDigitBIN": "3df9b5b9392fda86a0c0f0d425679ea8740e972e3d2aad9b93c6ad77a2d3d22f",
"binIssuingCountryCode": null,
"cardNetworkTransactionId": "014193692064116",
"recurrenceEndDate": null,
"electronicCommerceIndicator": null,
"salesOrderNumber": "",
"purchaseOrderNumber": null,
"addTokenAsPartOfPaymentSubmission": false,
"posTerminal": null,
"returnURL": null,
"cancelURL": null,
"paymentRedirectURL": null,
"cardType": null,
"realex3DSecureVISAPit": "",
"realex3DSecureURL": "",
"realex3DSecurePaReq": "",
"realex3DSecureEncodedMD": "",
"realexRequestID": "",
"createdUserName": null,
"capturePymtGtwyRefNumber": null,
"transactionOwnerUserName": null,
"geolocation": null,
"paymentAction": null,
"merchantName": null,
"productName": null,
"strCheckInDate": null,
"strCheckOutDate": null,
"serialNumber": null,
"avsResponseStatus": null,
"cvvResponseStatus": null,
"profileSubscriptionId": null,
"message": null,
"hasTransactionDocuments": false,
"releaseRemainingFundsInd": false,
"ipaymentMethod": null,
"ssoenabledInd": false,
"transactionDetailMap": {
"63.VI.2": "C ",
"63.49.2": "M",
"63.22.2": "APPROVAL ",
"63.SD.XZ": "C",
"63.14.8": "000000000000",
"63.14.6": " ",
"63.14.7": "000000000000",
"63.14.4": "G324",
"63.14.5": "H",
"63.14.2": "P",
"63.14.3": "014193692064116",
"63.SD.AR": "V000",
"63.SD.AS": "C",
"63.SD.TC": "601100000000000"
},
"qrcodeBase64Image": null,
"qrcodeCopyURL": null,
"qrcodeBase64ImageString": null,
"IFDSerialNumber": null
}
]
}
Updated As Of Version 6.4.0.8