Download OpenAPI specification:
Service to process any type of transaction.
Decrypt and Decode POS Card details.
| encryptionKey required | string non-empty The Key Serial Number (KSN) used in the DUKPT encryption process. This is a hexadecimal string uniquely identifying the encryption key. |
| encryptedData required | string non-empty The encrypted payload containing sensitive transaction details. This is a hexadecimal string produced using the encryptionKey. |
| dataType required | string (PosCardDataType) Enum: "TLV" "TRACK2" Details:
|
object (PosCardDataMetaData) Additional metadata about the transaction for tracking and processing purposes. |
{- "encryptionKey": "string",
- "encryptedData": "string",
- "dataType": "TLV",
- "metaData": {
- "transactionId": "string"
}
}{- "pan": "string",
- "decryptedData": "string",
- "metaData": {
- "transactionId": "string"
}
}Lookup the status of a processed transaction request.
| tid | string The identity of the terminal utilized in the transaction that the status is being requested for. |
| tnxId | string The unique identifier returned in a Payment response to use for looking up the processing status of the transaction. |
| fiEntityId | string The entityId of the Financial Institution, this field is required if using a 'main' token. |
{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "counterPartyTransactionRetrievalReferenceNumber": "410200005783",
- "uniqueTransactionReferenceNumber": "4102000054545181515156",
- "recurringResult": {
- "initialTransactionId": "70b82462d3794d158c642f8d5019eb7d"
}
}Process a Fee transaction request.
| X-Idempotency-Key | string |
| terminalIdentifier | string or null The identity of the terminal to charge the fee. |
| entityId | string or null The entityId of the level the fee is being charged on. (Contract or Teminal) |
| feeReference | string or null <= 32 characters A unique identifier or reference number associated with the collection of fees or payments. |
| feeType required | string (FeeType) Enum: "AcquirerArbitrationFee" "ArbitrationSchemeFee" "ChargebackFee" "DeclineFee" "MDF" "MastercardArbitrationSchemeFee" "MastercardArbitrationFee" "MastercardCollaborationRequestFeeTier1" "MastercardCollaborationRequestFeeTier2D" "MastercardDisputeAdministrationFee" "MastercardPreArbitrationSchemeFee" "PreComplianceFee" "RepresentmentFee" "RetrievalFee" "SchemeComplianceFee" "VisaArbitrationSchemeFee" "VisaIncomingArbitrationFee" "VisaOutgoingArbitrationFee" "VisaRapidDisputeResolutionFee" "AcquirerComplianceFee" "AnnualDormancyFee" "BalanceConfirmationFee" "ExcessiveChargebackDocFee" "ExcessiveMastercardChargebackValue" "MastercardCollaborationRequestFeeTier2" "MonthlyFee" "OtherFee" "PayoutFee" "PayoutInvestigationFee" "StartupFee" "VisaCnpUnsecureChargebackFee" "ChargebackTier2Visa" "ChargebackTier2MC" "PreArbitrationFee" "ExcessiveFraudFeeDisp" The type of fee to charge. Details:
|
| amount | number or null <double> The amount of the fee to be charged. |
| currencyAlphaCode | string or null The ISO 4217 currency alpha code of the fee amount. |
| description | string or null <= 255 characters A description of the fee being charged |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
| fiEntityId | string or null The EntityId of the Financial Institution that the specific user belongs to. If X-Entity-Id header is 'main', this field is required. |
{- "terminalIdentifier": "00868661",
- "entityId": "00456789",
- "feeReference": "FCCN-20230918-123456",
- "feeType": "AcquirerArbitrationFee",
- "amount": 5.51,
- "currencyAlphaCode": "EUR",
- "description": "This is a fee that gets charged when a limit is reached.",
- "gatewaySourceId": "2469a1b0-25b3-449a-bd54-7150a755a226",
- "fiEntityId": "string"
}{- "feeUniqueIdentifier": "FEE-02-A09",
- "timestampSubmitted": "2023-11-02T14:09:54",
- "transactionType": "Retail Decline Fee",
- "transactionReference": "REF-123",
- "outcome": {
- "status": "Unknown",
- "description": "An error has occurred.",
- "resultCode": "P00"
}, - "gatewaySourceId": "2469a1b0-25b3-449a-bd54-7150a755a226"
}Get the balance.
| terminalIdentifier required | string The identity of the terminal to retrieve the balance for. |
| includeSubSettlementLevel | boolean Default: false Indicates if the response should include the balances of a hierarchy’s subordinate level defined as the settlement level. |
{- "timestampSubmitted": "2023-11-02T14:09:54",
- "outcome": {
- "status": "Success",
- "description": "An error has occurred.",
- "resultCode": "P00"
}, - "balances": [
- {
- "type": "Total",
- "currencyAlphaCode": "EUR",
- "amount": 115.98
}
]
}Process a Manual Adjustment transaction request.
| X-Idempotency-Key | string |
| reference | string or null <= 32 characters A unique identifier or source reference number associated with the manual adjustment. |
| manualAdjustmentType required | string (ManualAdjustmentType) Enum: "CardSchemePenalty" "InwardPayment_OCT" "InwardPayment_FixedReserves" "ManualPayout" "ReturnedPayout" "Arbitration" "ChargebackDebit" "DisputeRefund" "DisputeOct" "PreArbitrationCredit" "PreArbitrationLiability" "PreComplianceLiability" "RepresentmentCredit" "BalanceSettlement" "DeclineFeeAdjustment" "MonthlyFeeAdjustment" "OtherFeeAdjustment" "StartupFeeAdjustment" "AcquirerComplianceFeeAdjustment" "WriteOff" "ChargebackDebitAdjustment" "ChargebackFeeAdjustment" "FeeCollection" "FundsDisbursement" "PreArbitrationCreditAdjustment" "PreArbitrationLiabilityAdjustment" "PreComplianceLiabilityAdjustment" "RepresentmentCreditAdjustment" "AcquirerArbitrationFeeAdjustment" "DisputeBlockFunds" "PayoutFeeAdjustment" Details:
|
| manualAdjustmentDirection | string (ManualAdjustmentDirection) Enum: "CREDIT" "DEBIT" Details: |
| amount required | number <double> The amount of the manual adjustment to be performed. |
| currencyAlphaCode required | string non-empty The ISO 4217 currency alpha code of the manual adjustment amount. |
| contractNumber | string or null The contract number to Credit/Debit (Also known as the EntityId) |
| terminalIdentifier | string or null The identity of the terminal to Credit/Debit. |
| description | string or null <= 255 characters A description of the manual adjustment |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
| fiEntityId | string or null The EntityId of the Financial Institution that the specific user belongs to. If X-Entity-Id header is 'main', this field is required. |
{- "reference": "CRED-20230918-123456",
- "manualAdjustmentType": "CardSchemePenalty",
- "manualAdjustmentDirection": "CREDIT",
- "amount": 10.84,
- "currencyAlphaCode": "EUR",
- "contractNumber": "00456789",
- "terminalIdentifier": "00456789",
- "description": "This is a credit transaction for reason x.",
- "gatewaySourceId": "2469a1b0-25b3-449a-bd54-7150a755a226",
- "fiEntityId": "string"
}{- "adjustmentUniqueIdentifier": "ADJ-01-C00",
- "timestampSubmitted": "2023-11-02T14:09:54",
- "transactionType": "CardSchemePenalty",
- "direction": "CREDIT",
- "transactionReference": "CRED-123",
- "outcome": {
- "status": "Unknown",
- "description": "An error has occured.",
- "resultCode": "P00"
}, - "gatewaySourceId": "2469a1b0-25b3-449a-bd54-7150a755a226"
}Process a Payment transaction request.
required | object (TransactionFundsTransferPayment) |
required | object (MerchantFundsTransfer) |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
Array of objects or null (AdditionalDataItem) | |
object (CardSimple) | |
object (SenderPayment) | |
required | object (ReceiverPayment) |
object (LanguageDescription) Details about the language |
{- "transaction": {
- "source": "ECOMMERCE",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "configurations": {
- "isHighRisk": false,
- "isCrypto": false
}, - "businessTransactionCategory": "TAX_REBATE",
- "transactionPurpose": "FamilySupport",
- "purposeOfPayment": "ISCOMC",
- "sourceOfFunds": "CREDIT_CARD",
- "retrievalReferenceNumber": "string",
- "rrnForCounterPartyTransaction": "string"
}, - "merchant": {
- "terminalIdentifier": "99868661",
- "merchantIdentifier": "00868661",
- "fiEntityId": "string",
- "uniqueIdentifier": "MerchantUniqueTnx1234",
- "paymentTypeIndicator": "C07",
- "businessApplicationIdentifier": "PP",
- "cardAcceptorInfo": {
- "name": "Acme Electronics Store",
- "city": "New York City",
- "countryAlpha2Code": "US",
- "cardAcceptorStreet": "8839 Hodkiewicz Glen",
- "cardAcceptorRegion": "EEA",
- "cardAcceptorState": "Michigan",
- "cardAcceptorPostalCode": "56878",
- "cardAcceptorDescriptor": " Acme Electronics StoreNew York CityUS"
}
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "card": {
- "pan": "5389242987071022",
- "expiry": {
- "month": "02",
- "year": "25"
}, - "securityCode": "123",
- "cardholderName": "Mr John Doe"
}, - "sender": {
- "firstName": "Jane",
- "middleName": "string",
- "lastName": "Smith",
- "streetAddress": "456 Oak St",
- "city": "Another City",
- "stateOrProvinceCode": "NY",
- "countryAlpha3Code": "USA",
- "postalCode": "67890",
- "phoneNumber": "+1-555-5678",
- "dateOfBirth": "19851215",
- "identificationNumber": "ID987654321",
- "identificationCountryAlpha3Code": "USA",
- "identificationExpirationDate": "06152025",
- "nationality": "Ame",
- "countryOfBirth": "USA",
- "identificationType": "Other",
- "identificationSubtype": "Business",
- "referenceNumber": "string",
- "accountNumber": "1234567890",
- "accountNumberType": "Other",
- "senderReference": "REF45115",
- "senderAccountNumber": "99868661"
}, - "receiver": {
- "firstName": "Jane",
- "middleName": "string",
- "lastName": "Smith",
- "streetAddress": "456 Oak St",
- "city": "Another City",
- "stateOrProvinceCode": "NY",
- "countryAlpha3Code": "USA",
- "postalCode": "67890",
- "phoneNumber": "+1-555-5678",
- "dateOfBirth": "19851215",
- "identificationNumber": "ID987654321",
- "identificationCountryAlpha3Code": "USA",
- "identificationExpirationDate": "06152025",
- "nationality": "Ame",
- "countryOfBirth": "USA",
- "identificationType": "Other",
- "identificationSubtype": "Business",
- "accountNumber": "1234567890",
- "accountNumberType": "Other"
}, - "language": {
- "languageIdentification": "eng",
- "languageData": "Hello, world!",
- "encoding": "UTF-8"
}
}{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "counterPartyTransactionRetrievalReferenceNumber": "410200005783",
- "uniqueTransactionReferenceNumber": "4102000054545181515156",
- "recurringResult": {
- "initialTransactionId": "70b82462d3794d158c642f8d5019eb7d"
}
}Process a Funds Transfer Payment Authorisation transaction request.
required | object (TransactionFundsTransferPayment) |
required | object (MerchantFundsTransfer) |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
Array of objects or null (AdditionalDataItem) | |
object (CardSimple) | |
object (SenderPayment) | |
required | object (ReceiverPayment) |
object (LanguageDescription) Details about the language |
{- "transaction": {
- "source": "ECOMMERCE",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "configurations": {
- "isHighRisk": false,
- "isCrypto": false
}, - "businessTransactionCategory": "TAX_REBATE",
- "transactionPurpose": "FamilySupport",
- "purposeOfPayment": "ISCOMC",
- "sourceOfFunds": "CREDIT_CARD",
- "retrievalReferenceNumber": "string",
- "rrnForCounterPartyTransaction": "string"
}, - "merchant": {
- "terminalIdentifier": "99868661",
- "merchantIdentifier": "00868661",
- "fiEntityId": "string",
- "uniqueIdentifier": "MerchantUniqueTnx1234",
- "paymentTypeIndicator": "C07",
- "businessApplicationIdentifier": "PP",
- "cardAcceptorInfo": {
- "name": "Acme Electronics Store",
- "city": "New York City",
- "countryAlpha2Code": "US",
- "cardAcceptorStreet": "8839 Hodkiewicz Glen",
- "cardAcceptorRegion": "EEA",
- "cardAcceptorState": "Michigan",
- "cardAcceptorPostalCode": "56878",
- "cardAcceptorDescriptor": " Acme Electronics StoreNew York CityUS"
}
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "card": {
- "pan": "5389242987071022",
- "expiry": {
- "month": "02",
- "year": "25"
}, - "securityCode": "123",
- "cardholderName": "Mr John Doe"
}, - "sender": {
- "firstName": "Jane",
- "middleName": "string",
- "lastName": "Smith",
- "streetAddress": "456 Oak St",
- "city": "Another City",
- "stateOrProvinceCode": "NY",
- "countryAlpha3Code": "USA",
- "postalCode": "67890",
- "phoneNumber": "+1-555-5678",
- "dateOfBirth": "19851215",
- "identificationNumber": "ID987654321",
- "identificationCountryAlpha3Code": "USA",
- "identificationExpirationDate": "06152025",
- "nationality": "Ame",
- "countryOfBirth": "USA",
- "identificationType": "Other",
- "identificationSubtype": "Business",
- "referenceNumber": "string",
- "accountNumber": "1234567890",
- "accountNumberType": "Other",
- "senderReference": "REF45115",
- "senderAccountNumber": "99868661"
}, - "receiver": {
- "firstName": "Jane",
- "middleName": "string",
- "lastName": "Smith",
- "streetAddress": "456 Oak St",
- "city": "Another City",
- "stateOrProvinceCode": "NY",
- "countryAlpha3Code": "USA",
- "postalCode": "67890",
- "phoneNumber": "+1-555-5678",
- "dateOfBirth": "19851215",
- "identificationNumber": "ID987654321",
- "identificationCountryAlpha3Code": "USA",
- "identificationExpirationDate": "06152025",
- "nationality": "Ame",
- "countryOfBirth": "USA",
- "identificationType": "Other",
- "identificationSubtype": "Business",
- "accountNumber": "1234567890",
- "accountNumberType": "Other"
}, - "language": {
- "languageIdentification": "eng",
- "languageData": "Hello, world!",
- "encoding": "UTF-8"
}
}{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "counterPartyTransactionRetrievalReferenceNumber": "410200005783",
- "uniqueTransactionReferenceNumber": "4102000054545181515156",
- "recurringResult": {
- "initialTransactionId": "70b82462d3794d158c642f8d5019eb7d"
}
}Process a Funds Inquiry transaction request.
required | object (TransactionSimple) Details specific to the transaction being processed. |
required | object (MerchantSimple) |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
Array of objects or null (AdditionalDataItem) | |
required | object (CardSimple) |
{- "transaction": {
- "source": "ECOMMERCE",
- "amount": {
- "totalAmount": 0,
- "currencyAlphaCode": "EUR"
}, - "configurations": {
- "isHighRisk": false,
- "isCrypto": false
}, - "businessTransactionCategory": "TAX_REBATE"
}, - "merchant": {
- "terminalIdentifier": "99868661",
- "merchantIdentifier": "00868661",
- "fiEntityId": "string",
- "uniqueIdentifier": "MerchantUniqueTnx1234"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "card": {
- "pan": "5389242987071022",
- "expiry": {
- "month": "02",
- "year": "25"
}, - "securityCode": "123",
- "cardholderName": "Mr John Doe"
}
}{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
]
}Process a Payment transaction request.
required | object (TransactionFundsTransfer) |
required | object (MerchantFundsTransfer) |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
Array of objects or null (AdditionalDataItem) | |
object (CardSimpleFundsTransfer) | |
object (SecureEcommerce) Details required for a 3DS payment | |
object (SenderFund) | |
object (ReceiverFund) | |
object (LanguageDescription) Details about the language |
{- "transaction": {
- "source": "ECOMMERCE",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "configurations": {
- "isHighRisk": false,
- "isCrypto": false
}, - "businessTransactionCategory": "TAX_REBATE",
- "transactionPurpose": "FamilySupport",
- "purposeOfPayment": "ISCOMC",
- "sourceOfFunds": "CREDIT_CARD"
}, - "merchant": {
- "terminalIdentifier": "99868661",
- "merchantIdentifier": "00868661",
- "fiEntityId": "string",
- "uniqueIdentifier": "MerchantUniqueTnx1234",
- "paymentTypeIndicator": "C07",
- "businessApplicationIdentifier": "PP",
- "cardAcceptorInfo": {
- "name": "Acme Electronics Store",
- "city": "New York City",
- "countryAlpha2Code": "US",
- "cardAcceptorStreet": "8839 Hodkiewicz Glen",
- "cardAcceptorRegion": "EEA",
- "cardAcceptorState": "Michigan",
- "cardAcceptorPostalCode": "56878",
- "cardAcceptorDescriptor": " Acme Electronics StoreNew York CityUS"
}
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "card": {
- "pan": "5389242987071022",
- "expiry": {
- "month": "02",
- "year": "25"
}, - "securityCode": "123",
- "cardholderName": "Mr John Doe",
- "tokenProvider": "None"
}, - "secureEcommerce": {
- "eci": "05",
- "threeDSecure": {
- "dsVersion": "2.2.0",
- "xid": "TWVyY2hhbnRDb25maWdFeGFtcGxlIQ==",
- "dsTransactionId": "e4b03fa7c9f4471b9c9f5a9f3d5f2c8a",
- "cavv": "AAABAWFlmQAAAABjRWWZEEFgFz+=",
- "avv": "AAABAWFlmQAAAABjRWWZEEFgFz+=",
- "authenticationMethod": "None"
}
}, - "sender": {
- "firstName": "Jane",
- "middleName": "string",
- "lastName": "Smith",
- "streetAddress": "456 Oak St",
- "city": "Another City",
- "stateOrProvinceCode": "NY",
- "countryAlpha3Code": "USA",
- "postalCode": "67890",
- "phoneNumber": "+1-555-5678",
- "dateOfBirth": "19851215",
- "identificationNumber": "ID987654321",
- "identificationCountryAlpha3Code": "USA",
- "identificationExpirationDate": "06152025",
- "nationality": "Ame",
- "countryOfBirth": "USA",
- "identificationType": "Other",
- "identificationSubtype": "Business",
- "referenceNumber": "string",
- "accountNumberType": "Other",
- "senderReference": "REF45115",
- "senderAccountNumber": "99868661"
}, - "receiver": {
- "firstName": "Jane",
- "middleName": "string",
- "lastName": "Smith",
- "streetAddress": "456 Oak St",
- "city": "Another City",
- "stateOrProvinceCode": "NY",
- "countryAlpha3Code": "USA",
- "postalCode": "67890",
- "phoneNumber": "+1-555-5678",
- "dateOfBirth": "19851215",
- "identificationNumber": "ID987654321",
- "identificationCountryAlpha3Code": "USA",
- "identificationExpirationDate": "06152025",
- "nationality": "Ame",
- "countryOfBirth": "USA",
- "identificationType": "Other",
- "identificationSubtype": "Business",
- "accountNumber": "1234567890",
- "accountNumberType": "Other"
}, - "language": {
- "languageIdentification": "eng",
- "languageData": "Hello, world!",
- "encoding": "UTF-8"
}
}{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "counterPartyTransactionRetrievalReferenceNumber": "410200005783",
- "uniqueTransactionReferenceNumber": "4102000054545181515156",
- "recurringResult": {
- "initialTransactionId": "70b82462d3794d158c642f8d5019eb7d"
}
}Process a Funds Transfer Authorisation transaction request.
required | object (TransactionFundsTransfer) |
required | object (MerchantFundsTransfer) |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
Array of objects or null (AdditionalDataItem) | |
object (CardSimpleFundsTransfer) | |
object (SecureEcommerce) Details required for a 3DS payment | |
object (SenderFund) | |
object (ReceiverFund) | |
object (LanguageDescription) Details about the language |
{- "transaction": {
- "source": "ECOMMERCE",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "configurations": {
- "isHighRisk": false,
- "isCrypto": false
}, - "businessTransactionCategory": "TAX_REBATE",
- "transactionPurpose": "FamilySupport",
- "purposeOfPayment": "ISCOMC",
- "sourceOfFunds": "CREDIT_CARD"
}, - "merchant": {
- "terminalIdentifier": "99868661",
- "merchantIdentifier": "00868661",
- "fiEntityId": "string",
- "uniqueIdentifier": "MerchantUniqueTnx1234",
- "paymentTypeIndicator": "C07",
- "businessApplicationIdentifier": "PP",
- "cardAcceptorInfo": {
- "name": "Acme Electronics Store",
- "city": "New York City",
- "countryAlpha2Code": "US",
- "cardAcceptorStreet": "8839 Hodkiewicz Glen",
- "cardAcceptorRegion": "EEA",
- "cardAcceptorState": "Michigan",
- "cardAcceptorPostalCode": "56878",
- "cardAcceptorDescriptor": " Acme Electronics StoreNew York CityUS"
}
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "card": {
- "pan": "5389242987071022",
- "expiry": {
- "month": "02",
- "year": "25"
}, - "securityCode": "123",
- "cardholderName": "Mr John Doe",
- "tokenProvider": "None"
}, - "secureEcommerce": {
- "eci": "05",
- "threeDSecure": {
- "dsVersion": "2.2.0",
- "xid": "TWVyY2hhbnRDb25maWdFeGFtcGxlIQ==",
- "dsTransactionId": "e4b03fa7c9f4471b9c9f5a9f3d5f2c8a",
- "cavv": "AAABAWFlmQAAAABjRWWZEEFgFz+=",
- "avv": "AAABAWFlmQAAAABjRWWZEEFgFz+=",
- "authenticationMethod": "None"
}
}, - "sender": {
- "firstName": "Jane",
- "middleName": "string",
- "lastName": "Smith",
- "streetAddress": "456 Oak St",
- "city": "Another City",
- "stateOrProvinceCode": "NY",
- "countryAlpha3Code": "USA",
- "postalCode": "67890",
- "phoneNumber": "+1-555-5678",
- "dateOfBirth": "19851215",
- "identificationNumber": "ID987654321",
- "identificationCountryAlpha3Code": "USA",
- "identificationExpirationDate": "06152025",
- "nationality": "Ame",
- "countryOfBirth": "USA",
- "identificationType": "Other",
- "identificationSubtype": "Business",
- "referenceNumber": "string",
- "accountNumberType": "Other",
- "senderReference": "REF45115",
- "senderAccountNumber": "99868661"
}, - "receiver": {
- "firstName": "Jane",
- "middleName": "string",
- "lastName": "Smith",
- "streetAddress": "456 Oak St",
- "city": "Another City",
- "stateOrProvinceCode": "NY",
- "countryAlpha3Code": "USA",
- "postalCode": "67890",
- "phoneNumber": "+1-555-5678",
- "dateOfBirth": "19851215",
- "identificationNumber": "ID987654321",
- "identificationCountryAlpha3Code": "USA",
- "identificationExpirationDate": "06152025",
- "nationality": "Ame",
- "countryOfBirth": "USA",
- "identificationType": "Other",
- "identificationSubtype": "Business",
- "accountNumber": "1234567890",
- "accountNumberType": "Other"
}, - "language": {
- "languageIdentification": "eng",
- "languageData": "Hello, world!",
- "encoding": "UTF-8"
}
}{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "counterPartyTransactionRetrievalReferenceNumber": "410200005783",
- "uniqueTransactionReferenceNumber": "4102000054545181515156",
- "recurringResult": {
- "initialTransactionId": "70b82462d3794d158c642f8d5019eb7d"
}
}Process a Zero Amount Authorisation transaction (Account Verification) request.
required | object (TransactionSimple) Details specific to the transaction being processed. |
required | object (Merchant) |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
Array of objects or null (AdditionalDataItem) | |
required | object (Card) |
object (Terminal) | |
required | object (AccountVerificationReceiverNames) Details specific to the account holder of the account being verified. |
{- "transaction": {
- "source": "ECOMMERCE",
- "amount": {
- "totalAmount": 0,
- "currencyAlphaCode": "EUR"
}, - "configurations": {
- "isHighRisk": false,
- "isCrypto": false
}, - "businessTransactionCategory": "TAX_REBATE"
}, - "merchant": {
- "terminalIdentifier": "99868661",
- "merchantIdentifier": "00868661",
- "fiEntityId": "string",
- "uniqueIdentifier": "MerchantUniqueTnx1234",
- "cardAcceptorInfo": {
- "name": "Acme Electronics Store",
- "city": "New York City",
- "countryAlpha2Code": "US",
- "cardAcceptorStreet": "8839 Hodkiewicz Glen",
- "cardAcceptorRegion": "EEA",
- "cardAcceptorState": "Michigan",
- "cardAcceptorPostalCode": "56878",
- "cardAcceptorDescriptor": " Acme Electronics StoreNew York CityUS"
}
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "card": {
- "manual": {
- "pan": "5389242987071022",
- "expiry": {
- "month": "02",
- "year": "25"
}, - "securityCode": "123"
}, - "emv": {
- "pinData": "5C1EE010672589CE",
- "pinKsn": "string",
- "sredData": "string",
- "sredKsn": "string"
}, - "magstripe": {
- "track2Data": "string",
- "ksn": "string"
}, - "tokenProvider": "None"
}, - "terminal": {
- "serialNumber": "SER1234567",
- "terminalType": "NEWNOTE-XXXX"
}, - "accountHolder": {
- "firstName": "Jane",
- "middleName": "string",
- "lastName": "Smith"
}
}{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "counterPartyTransactionRetrievalReferenceNumber": "410200005783",
- "uniqueTransactionReferenceNumber": "4102000054545181515156",
- "recurringResult": {
- "initialTransactionId": "70b82462d3794d158c642f8d5019eb7d"
}
}Process an Authorisation transaction request.
required | object (Transaction) Details specific to the transaction being processed. |
required | object (Merchant) |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
Array of objects or null (AdditionalDataItem) | |
required | object (Card) |
object (SecureEcommerce) Details required for a 3DS payment | |
object (Recurring) Details related to the recurring transaction. | |
object (ScaExemption) | |
object (Terminal) |
{- "transaction": {
- "source": "ECOMMERCE",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "configurations": {
- "isHighRisk": false,
- "isCrypto": false
}, - "businessTransactionCategory": "TAX_REBATE",
- "isScaResponse": true
}, - "merchant": {
- "terminalIdentifier": "99868661",
- "merchantIdentifier": "00868661",
- "fiEntityId": "string",
- "uniqueIdentifier": "MerchantUniqueTnx1234",
- "cardAcceptorInfo": {
- "name": "Acme Electronics Store",
- "city": "New York City",
- "countryAlpha2Code": "US",
- "cardAcceptorStreet": "8839 Hodkiewicz Glen",
- "cardAcceptorRegion": "EEA",
- "cardAcceptorState": "Michigan",
- "cardAcceptorPostalCode": "56878",
- "cardAcceptorDescriptor": " Acme Electronics StoreNew York CityUS"
}
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "card": {
- "manual": {
- "pan": "5389242987071022",
- "expiry": {
- "month": "02",
- "year": "25"
}, - "securityCode": "123"
}, - "emv": {
- "pinData": "5C1EE010672589CE",
- "pinKsn": "string",
- "sredData": "string",
- "sredKsn": "string"
}, - "magstripe": {
- "track2Data": "string",
- "ksn": "string"
}, - "tokenProvider": "None"
}, - "secureEcommerce": {
- "eci": "05",
- "threeDSecure": {
- "dsVersion": "2.2.0",
- "xid": "TWVyY2hhbnRDb25maWdFeGFtcGxlIQ==",
- "dsTransactionId": "e4b03fa7c9f4471b9c9f5a9f3d5f2c8a",
- "cavv": "AAABAWFlmQAAAABjRWWZEEFgFz+=",
- "avv": "AAABAWFlmQAAAABjRWWZEEFgFz+=",
- "authenticationMethod": "None"
}
}, - "recurring": {
- "source": "CIT",
- "mode": "Initial",
- "paymentType": "Instalment",
- "initialTransactionId": "70b82462d3794d158c642f8d5019eb7d",
- "industryPractice": "IncrementalAuthorisation"
}, - "scaExemption": {
- "isEligibleForSingleTapPinExemption": true,
- "lowRiskIndicators": [
- "SecureCorporatePayment"
]
}, - "terminal": {
- "serialNumber": "SER1234567",
- "terminalType": "NEWNOTE-XXXX"
}
}{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "counterPartyTransactionRetrievalReferenceNumber": "410200005783",
- "uniqueTransactionReferenceNumber": "4102000054545181515156",
- "recurringResult": {
- "initialTransactionId": "70b82462d3794d158c642f8d5019eb7d"
}
}Process a Purchase transaction request.
required | object (Transaction) Details specific to the transaction being processed. |
required | object (Merchant) |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
Array of objects or null (AdditionalDataItem) | |
required | object (Card) |
object (SecureEcommerce) Details required for a 3DS payment | |
object (Recurring) Details related to the recurring transaction. | |
object (ScaExemption) | |
object (Terminal) |
{- "transaction": {
- "source": "ECOMMERCE",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "configurations": {
- "isHighRisk": false,
- "isCrypto": false
}, - "businessTransactionCategory": "TAX_REBATE",
- "isScaResponse": true
}, - "merchant": {
- "terminalIdentifier": "99868661",
- "merchantIdentifier": "00868661",
- "fiEntityId": "string",
- "uniqueIdentifier": "MerchantUniqueTnx1234",
- "cardAcceptorInfo": {
- "name": "Acme Electronics Store",
- "city": "New York City",
- "countryAlpha2Code": "US",
- "cardAcceptorStreet": "8839 Hodkiewicz Glen",
- "cardAcceptorRegion": "EEA",
- "cardAcceptorState": "Michigan",
- "cardAcceptorPostalCode": "56878",
- "cardAcceptorDescriptor": " Acme Electronics StoreNew York CityUS"
}
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "card": {
- "manual": {
- "pan": "5389242987071022",
- "expiry": {
- "month": "02",
- "year": "25"
}, - "securityCode": "123"
}, - "emv": {
- "pinData": "5C1EE010672589CE",
- "pinKsn": "string",
- "sredData": "string",
- "sredKsn": "string"
}, - "magstripe": {
- "track2Data": "string",
- "ksn": "string"
}, - "tokenProvider": "None"
}, - "secureEcommerce": {
- "eci": "05",
- "threeDSecure": {
- "dsVersion": "2.2.0",
- "xid": "TWVyY2hhbnRDb25maWdFeGFtcGxlIQ==",
- "dsTransactionId": "e4b03fa7c9f4471b9c9f5a9f3d5f2c8a",
- "cavv": "AAABAWFlmQAAAABjRWWZEEFgFz+=",
- "avv": "AAABAWFlmQAAAABjRWWZEEFgFz+=",
- "authenticationMethod": "None"
}
}, - "recurring": {
- "source": "CIT",
- "mode": "Initial",
- "paymentType": "Instalment",
- "initialTransactionId": "70b82462d3794d158c642f8d5019eb7d",
- "industryPractice": "IncrementalAuthorisation"
}, - "scaExemption": {
- "isEligibleForSingleTapPinExemption": true,
- "lowRiskIndicators": [
- "SecureCorporatePayment"
]
}, - "terminal": {
- "serialNumber": "SER1234567",
- "terminalType": "NEWNOTE-XXXX"
}
}{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "counterPartyTransactionRetrievalReferenceNumber": "410200005783",
- "uniqueTransactionReferenceNumber": "4102000054545181515156",
- "recurringResult": {
- "initialTransactionId": "70b82462d3794d158c642f8d5019eb7d"
}
}Process a Standalone Refund transaction request.
required | object (TransactionRefundStandalone) |
object (Card) | |
required | object (Merchant) |
object (ScaExemption) | |
object (Terminal) | |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
Array of objects or null (AdditionalDataItem) |
{- "transaction": {
- "source": "ECOMMERCE",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "configurations": {
- "isHighRisk": false,
- "isCrypto": false
}, - "businessTransactionCategory": "TAX_REBATE",
- "isScaResponse": true
}, - "card": {
- "manual": {
- "pan": "5389242987071022",
- "expiry": {
- "month": "02",
- "year": "25"
}, - "securityCode": "123"
}, - "emv": {
- "pinData": "5C1EE010672589CE",
- "pinKsn": "string",
- "sredData": "string",
- "sredKsn": "string"
}, - "magstripe": {
- "track2Data": "string",
- "ksn": "string"
}, - "tokenProvider": "None"
}, - "merchant": {
- "terminalIdentifier": "99868661",
- "merchantIdentifier": "00868661",
- "fiEntityId": "string",
- "uniqueIdentifier": "MerchantUniqueTnx1234",
- "cardAcceptorInfo": {
- "name": "Acme Electronics Store",
- "city": "New York City",
- "countryAlpha2Code": "US",
- "cardAcceptorStreet": "8839 Hodkiewicz Glen",
- "cardAcceptorRegion": "EEA",
- "cardAcceptorState": "Michigan",
- "cardAcceptorPostalCode": "56878",
- "cardAcceptorDescriptor": " Acme Electronics StoreNew York CityUS"
}
}, - "scaExemption": {
- "isEligibleForSingleTapPinExemption": true,
- "lowRiskIndicators": [
- "SecureCorporatePayment"
]
}, - "terminal": {
- "serialNumber": "SER1234567",
- "terminalType": "NEWNOTE-XXXX"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
]
}{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
]
}Process an Authorisation Confirmation transaction request.
required | object (TransactionAuthorisationConfirmation) |
object (MerchantSubsequent) Details specific to the merchant processing the transaction that should not be inferred from the original transaction. | |
required | object (OriginalTransactionAuthorisationConfirmation) Details specific to referenced transaction. |
object (ScaExemption) | |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
Array of objects or null (AdditionalDataItem) |
{- "transaction": {
- "source": "ECOMMERCE",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "isScaResponse": true
}, - "merchant": {
- "uniqueIdentifier": "MerchantTnx1234",
- "fiEntityId": "string"
}, - "originalTransaction": {
- "tnxId": "2b9670a3-d067-4161-afca-a654a0c630d9"
}, - "scaExemption": {
- "isEligibleForSingleTapPinExemption": true,
- "lowRiskIndicators": [
- "SecureCorporatePayment"
]
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
]
}{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
], - "counterPartyTransactionRetrievalReferenceNumber": "410200005783",
- "uniqueTransactionReferenceNumber": "4102000054545181515156",
- "recurringResult": {
- "initialTransactionId": "70b82462d3794d158c642f8d5019eb7d"
}
}Process a Linked Refund transaction request.
object (TransactionRefund) | |
object (MerchantSubsequent) Details specific to the merchant processing the transaction that should not be inferred from the original transaction. | |
required | object (OriginalTransactionRefund) Details specific to referenced transaction. |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
Array of objects or null (AdditionalDataItem) |
{- "transaction": {
- "source": "ECOMMERCE",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "isScaResponse": true
}, - "merchant": {
- "uniqueIdentifier": "MerchantTnx1234",
- "fiEntityId": "string"
}, - "originalTransaction": {
- "tnxId": "2b9670a3-d067-4161-afca-a654a0c630d9"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
]
}{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
]
}Process a Reversal transaction request.
required | object (TransactionReversal) |
object (MerchantSubsequent) Details specific to the merchant processing the transaction that should not be inferred from the original transaction. | |
required | object (OriginalTransactionReversal) Details specific to referenced transaction. |
object (ScaExemption) | |
| gatewaySourceId | string or null An id to uniquely identify the request from the gateways calling it |
Array of objects or null (AdditionalDataItem) |
{- "transaction": {
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "source": "ECOMMERCE",
- "isScaResponse": true,
- "isSystemInitiated": true
}, - "merchant": {
- "uniqueIdentifier": "MerchantTnx1234",
- "fiEntityId": "string"
}, - "originalTransaction": {
- "tnxId": "2b9670a3-d067-4161-afca-a654a0c630d9"
}, - "scaExemption": {
- "isEligibleForSingleTapPinExemption": true,
- "lowRiskIndicators": [
- "SecureCorporatePayment"
]
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
]
}{- "transactionUniqueIdentifier": "a06cc214-7c33-41c0-991f-069139db07ed",
- "retrievalReferenceNumber": "410200005773",
- "timestampSubmitted": "2024-04-11T19:41:06",
- "systemTraceAuditNumber": "638922",
- "amount": {
- "totalAmount": 100.21,
- "currencyAlphaCode": "EUR"
}, - "outcome": {
- "authCode": "365884",
- "responseCode": "00",
- "responseStatus": "PENDING",
- "reasonDescription": "Approved",
- "emvTlvData": "8A023030",
- "isTestSimulation": false,
- "issuerResponseCode": "00",
- "merchantAdviceCode": "03"
}, - "gatewaySourceId": "3143db8d-4d14-4e6c-88a6-a0952770e4e9",
- "additionalData": [
- {
- "key": "string",
- "value": "string"
}
]
}Lookup a transactions link details.
| terminalIdentifier required | string non-empty |
| merchantIdentifier | string or null |
| pan required | string non-empty |
{- "terminalIdentifier": "string",
- "merchantIdentifier": "string",
- "pan": "string"
}{- "hasLinkedPurchase": true
}