Submits a card-payment event from an issuing flow for AML/screening. In issuing, the cardholder is your Customer (account holder), and the merchant is the Counterparty.
Do not send card details that is protected by PCI-DSS. Use BIN, last-4 digits, expiry (YYYYMM), and holder name. This is typically sufficient for monitoring without expanding PCI DSS scope.
Minimal request example
{
"tenantTransactionId":"c45d18a6-2384-49aa-98ab-60134a50a5d7",
"tenantProcessingTimestamp":"2020-06-05T16:20:01.618Z",
"initiatingParty":"FUNDS_ORIGINATOR",
"accountHoldingParty":"FUNDS_ORIGINATOR",
"fundsOriginator":{
"accountId":"8713672ec1687d0dbbe462e04125b513",
"last4Digits":"2253",
"bankIdentifier":"542810",
"expiry":"202812",
"scheme":"MASTER",
"bankCountry":"DE"
},
"fundsBeneficiary":{
"accountId":"532213",
"holder":"BGV Grocery",
"bankCountry":"GB",
"scheme":"CARD_MERCHANTACCOUNT"
},
"initiatedAmount":125.00,
"initiatedCurrency":"GBP",
"settledAmount":146.44,
"settledCurrency":"EUR",
"usage":"BGV Grocery 27 Mount Pleasant Reading RG1 2BP GBRGBR",
"paymentType":"AUTHORIZATION_CAPTURE",
"transactionResult":"ACCEPTED",
"channel":"POS",
"transactionProcessingDetails": {
"entryMode": "ICC_CONTACTLESS",
"networkResponseCode": "0"
},
"masterData":{
"accountHoldingPartyData":{
"riskLevel":"medium"
},
"counterpartyData": {
"companyDetails":{
"businessPurposes":[
"5411"
],
"businessDescription": "Drug Stores and Pharmacies",
"companyName": "BGV Grocery",
"street": "27 Mount Pleasant",
"town": "Reading",
"zip": "RG1 2BP",
"country": "GB"
}
}
}
}Field reference
Field | Description |
|---|---|
| Your unique transaction ID (traceability/idempotency). |
| UTC timestamp when you processed the transaction (ISO-8601). |
| Party that initiated the transaction (for card payments: cardholder = |
| Your customer in issuing (cardholder = |
| Cardholder (payer) details object. |
| Merchant (payee) details object. |
| Amount at authorization. |
| Authorization currency. |
| Amount posted/settled (may be |
| Settlement currency. |
| Descriptor/reference shown on statement (e.g., merchant/location text). |
| Payment stage/type (e.g., authorization, capture, refund). |
| Result outcome (e.g., accepted/declined reason). |
| Channel of interaction (e.g., |
| Network/terminal details object. |
| Master/customer metadata for cardholder and merchant. |
fundsOriginator (cardholder)
Field | Description |
|---|---|
| Card token/UUID or similar pseudonymous card identifier. |
| Last four digits of the card. |
| Card BIN (first 6 digits). |
| Card expiry in |
| Card scheme (e.g., MASTER, VISA, AMEX, …). |
| Issuing country (ISO code). |
fundsBeneficiary (merchant)
Field | Description |
|---|---|
| Merchant ID / merchant account identifier. |
| Merchant legal/trading name. |
| Merchant account country. |
| For merchants: |
transactionProcessingDetails
Field | Description |
|---|---|
| POS/terminal entry mode (e.g., ICC_CONTACTLESS, MAGNETIC_STRIPE, ECOMMERCE). |
| Response code from the network/scheme (often ISO-8583 style). |
masterData.accountHoldingPartyData
Field | Description |
|---|---|
| Cardholder risk level (e.g., low/medium/high). |
masterData.counterpartyData.companyDetails (merchant)
Field | Description |
|---|---|
| Merchant category classification (e.g., MCC list like |
| Description of merchant’s business. |
| Merchant company/trading name. |
| Merchant street address. |
| City/Town. |
| Postal/ZIP code. |
| Country (ISO code). |