Transactions

Get transaction details of a bank account

Get Account Transactions by Account ID

This method retrieves transaction information for a specified period of time of the specific account using the Account ID.

Endpoint details

Endpoint URLMethodAuthentication requirements
/v1/api/observice/transactionsByIdPOST1. clientId
2. clientCode
3. signature
4. Authorization Bearer: Token

Sample request

{
    "dateTimeStamp": "YYYY-MM-DDTHH:MM:SS",
    "requestID": "Enter_Request_Id",
    "merchantId": "Enter_Merchant_Id",
    "fromDate": "YYYY-MM-DDTHH:MM:SS.SSSZ",
    "toDate": "YYYY-MM-DDTHH:MM:SS.SSSZ",
    "banks": [
        {
            "code": "Enter_Bank_Code",
            "consentId":"Enter_Consent_Id",
            "accountId":"Enter_Account_Id"
        }
    ]
}

Request description

JSON TagDescriptionData type
DateTimeStamp
Mandatory
Stamp denoting the date and time of the requestString
RequestID
Mandatory
Unique request identificationString
merchantId
Mandatory
Unique merchant identificationString
fromDate
Mandatory
Initial date of the transaction periodString
toDate
Mandatory
Final date of the transaction periodString
banks
Mandatory
Array of banks and consentsObject
code
Mandatory
Unique bank identification codeString
consentId
Mandatory
Unique consent identificationString
accountId
Mandatory
Unique account identification String

Sample response

{
    "success": true,
    "payload": [
        {
            "code": "Bank_Code",
            "data": {
               "accountId": "Account_Id",
                        "transactions": [
                            {
                                "transactionId": "Transaction_Id",
                                "transactionDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "transactionReference": "Transaction_Reference",
                                "transactionType": "Transaction_Type",
                                "subTransactionType": "Transaction_Sub_Type",
                                "paymentModes": "Payment_Modes",
                                "creditDebitIndicator": "Credit_Debit_Indicator",
                                "status": "Status",
                                "transactionMutability": "Transaction_Mutability",
                                "bookingDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "valueDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "amount": {
                                    "amount": "0.00",
                                    "currency": "Currency"
                                },
                                "chargeAmount": {
                                    "amount": "0.00",
                                    "currency": "Currency",
                                    "chargeIncluded": true or false
                                },
                                "balance": {
                                    "creditDebitIndicator": "Credit_Debit_Indicator",
                                    "type": "Type",
                                    "amount": {
                                        "amount": "00.00",
                                        "currency": "Currency"
                                    }
                                },
                                "merchantDetails": {
                                    "merchantName": "Merchant_Name",
                                    "merchantCategoryCode": "Merchant_Category_Code",
                                    "merchantId": Merchant_Id
                                },
                                "localTimeZone": "XXX+HH:MM",
                                "terminalId": terminal_Id,
                                "chargeAmountVat": {
                                    "amount": "00.0000",
                                    "currency": "Currency"
                                },
                                "flags": [
                                    "Flag_Details"
                                ],
                                "cardInstrument": {
                                    "cardSchemeName": "Card_Scheme_Name",
                                    "instrumentType": "Instrument_Type",
                                    "name": "Name",
                                    "identification": "Identification_Details"
                                },
                                "creditorAccount": [
                                    {}
                                ],
                                "debtorAccount": {
                                    "identificationType": "Debit_Account",
                                    "identification": "Identification_Details",
                                    "name": "Name"
                                },
                                "transactionInformation": "Transaction_Info",
                                "bankTransactionCode": {
                                    "domain": "Domain",
                                    "domainCode": "Domain_Code",
                                    "family": "Family",
                                    "familyCode": "Family_Code",
                                    "subFamily": "Sub_Family",
                                    "subFamilyCode": "Sub_Family_Code"
                                },
                                "proprietaryBankTransactionCode": {
                                    "code": "Code",
                                    "issuer": "Issuer"
                                },
                                "creditorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "debtorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "billDetails": {
                                    "billerId": Biller_Id,
                                    "billNumber": "Bill_Number",
                                    "billPaymentType": "Bill_Payment_Type"
                                }
                            },
                            {
                                "transactionId": "Transaction_Id",
                                "transactionDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "transactionReference": "Transaction_Reference",
                                "transactionType": "Transaction_Type",
                                "subTransactionType": "Transaction_Sub_Type",
                                "paymentModes": "Payment_Modes",
                                "creditDebitIndicator": "Credit_Debit_Indicator",
                                "status": "Status",
                                "transactionMutability": "Transaction_Mutability",
                                "bookingDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "valueDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "amount": {
                                    "amount": "0.00",
                                    "currency": "Currency"
                                },
                                "chargeAmount": {
                                    "amount": "0.00",
                                    "currency": "Currency",
                                    "chargeIncluded": true or false
                                },
                                "balance": {
                                    "creditDebitIndicator": "Credit_Debit_Indicator",
                                    "type": "Type",
                                    "amount": {
                                        "amount": "00.00",
                                        "currency": "Currency"
                                    }
                                },
                                "merchantDetails": {
                                    "merchantName": "Merchant_Name",
                                    "merchantCategoryCode": "Merchant_Category_Code",
                                    "merchantId": Merchant_Id
                                },
                                "localTimeZone": "XXX+HH:MM",
                                "terminalId": terminal_Id,
                                "chargeAmountVat": {
                                    "amount": "00.0000",
                                    "currency": "Currency"
                                },
                                "flags": [
                                    "Flag_Details"
                                ],
                                "cardInstrument": {
                                    "cardSchemeName": "Card_Scheme_Name",
                                    "instrumentType": "Instrument_Type",
                                    "name": "Name",
                                    "identification": "Identification_Details"
                                },
                                "creditorAccount": [
                                    {}
                                ],
                                "debtorAccount": {
                                    "identificationType": "Debit_Account",
                                    "identification": "Identification_Details",
                                    "name": "Name"
                                },
                                "transactionInformation": "Transaction_Info",
                                "bankTransactionCode": {
                                    "domain": "Domain",
                                    "domainCode": "Domain_Code",
                                    "family": "Family",
                                    "familyCode": "Family_Code",
                                    "subFamily": "Sub_Family",
                                    "subFamilyCode": "Sub_Family_Code"
                                },
                                "proprietaryBankTransactionCode": {
                                    "code": "Code",
                                    "issuer": "Issuer"
                                },
                                "creditorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "debtorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "billDetails": {
                                    "billerId": Biller_Id,
                                    "billNumber": "Bill_Number",
                                    "billPaymentType": "Bill_Payment_Type"
                                }
                            },
                            {
                                "transactionId": "Transaction_Id",
                                "transactionDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "transactionReference": "Transaction_Reference",
                                "transactionType": "Transaction_Type",
                                "subTransactionType": "Transaction_Sub_Type",
                                "paymentModes": "Payment_Modes",
                                "creditDebitIndicator": "Credit_Debit_Indicator",
                                "status": "Status",
                                "transactionMutability": "Transaction_Mutability",
                                "bookingDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "valueDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "amount": {
                                    "amount": "0.00",
                                    "currency": "Currency"
                                },
                                "chargeAmount": {
                                    "amount": "0.00",
                                    "currency": "Currency",
                                    "chargeIncluded": true or false
                                },
                                "balance": {
                                    "creditDebitIndicator": "Credit_Debit_Indicator",
                                    "type": "Type",
                                    "amount": {
                                        "amount": "00.00",
                                        "currency": "Currency"
                                    }
                                },
                                "merchantDetails": {
                                    "merchantName": "Merchant_Name",
                                    "merchantCategoryCode": "Merchant_Category_Code",
                                    "merchantId": Merchant_Id
                                },
                                "localTimeZone": "XXX+HH:MM",
                                "terminalId": terminal_Id,
                                "chargeAmountVat": {
                                    "amount": "00.0000",
                                    "currency": "Currency"
                                },
                                "flags": [
                                    "Flag_Details"
                                ],
                                "cardInstrument": {
                                    "cardSchemeName": "Card_Scheme_Name",
                                    "instrumentType": "Instrument_Type",
                                    "name": "Name",
                                    "identification": "Identification_Details"
                                },
                                "creditorAccount": [
                                    {}
                                ],
                                "debtorAccount": {
                                    "identificationType": "Debit_Account",
                                    "identification": "Identification_Details",
                                    "name": "Name"
                                },
                                "transactionInformation": "Transaction_Info",
                                "bankTransactionCode": {
                                    "domain": "Domain",
                                    "domainCode": "Domain_Code",
                                    "family": "Family",
                                    "familyCode": "Family_Code",
                                    "subFamily": "Sub_Family",
                                    "subFamilyCode": "Sub_Family_Code"
                                },
                                "proprietaryBankTransactionCode": {
                                    "code": "Code",
                                    "issuer": "Issuer"
                                },
                                "creditorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "debtorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "billDetails": {
                                    "billerId": Biller_Id,
                                    "billNumber": "Bill_Number",
                                    "billPaymentType": "Bill_Payment_Type"
                                }
                            },
                            {
                                "transactionId": "Transaction_Id",
                                "transactionDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "transactionReference": "Transaction_Reference",
                                "transactionType": "Transaction_Type",
                                "subTransactionType": "Transaction_Sub_Type",
                                "paymentModes": "Payment_Modes",
                                "creditDebitIndicator": "Credit_Debit_Indicator",
                                "status": "Status",
                                "transactionMutability": "Transaction_Mutability",
                                "bookingDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "valueDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "amount": {
                                    "amount": "0.00",
                                    "currency": "Currency"
                                },
                                "chargeAmount": {
                                    "amount": "0.00",
                                    "currency": "Currency",
                                    "chargeIncluded": true or false
                                },
                                "balance": {
                                    "creditDebitIndicator": "Credit_Debit_Indicator",
                                    "type": "Type",
                                    "amount": {
                                        "amount": "00.00",
                                        "currency": "Currency"
                                    }
                                },
                                "merchantDetails": {
                                    "merchantName": "Merchant_Name",
                                    "merchantCategoryCode": "Merchant_Category_Code",
                                    "merchantId": Merchant_Id
                                },
                                "localTimeZone": "XXX+HH:MM",
                                "terminalId": terminal_Id,
                                "chargeAmountVat": {
                                    "amount": "00.0000",
                                    "currency": "Currency"
                                },
                                "flags": [
                                    "Flag_Details"
                                ],
                                "cardInstrument": {
                                    "cardSchemeName": "Card_Scheme_Name",
                                    "instrumentType": "Instrument_Type",
                                    "name": "Name",
                                    "identification": "Identification_Details"
                                },
                                "creditorAccount": [
                                    {}
                                ],
                                "debtorAccount": {
                                    "identificationType": "Debit_Account",
                                    "identification": "Identification_Details",
                                    "name": "Name"
                                },
                                "transactionInformation": "Transaction_Info",
                                "bankTransactionCode": {
                                    "domain": "Domain",
                                    "domainCode": "Domain_Code",
                                    "family": "Family",
                                    "familyCode": "Family_Code",
                                    "subFamily": "Sub_Family",
                                    "subFamilyCode": "Sub_Family_Code"
                                },
                                "proprietaryBankTransactionCode": {
                                    "code": "Code",
                                    "issuer": "Issuer"
                                },
                                "creditorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "debtorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "billDetails": {
                                    "billerId": Biller_Id,
                                    "billNumber": "Bill_Number",
                                    "billPaymentType": "Bill_Payment_Type"
                                }
                            },
                            {
                                "transactionId": "Transaction_Id",
                                "transactionDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "transactionReference": "Transaction_Reference",
                                "transactionType": "Transaction_Type",
                                "subTransactionType": "Transaction_Sub_Type",
                                "paymentModes": "Payment_Modes",
                                "creditDebitIndicator": "Credit_Debit_Indicator",
                                "status": "Status",
                                "transactionMutability": "Transaction_Mutability",
                                "bookingDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "valueDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "amount": {
                                    "amount": "0.00",
                                    "currency": "Currency"
                                },
                                "chargeAmount": {
                                    "amount": "0.00",
                                    "currency": "Currency",
                                    "chargeIncluded": true or false
                                },
                                "balance": {
                                    "creditDebitIndicator": "Credit_Debit_Indicator",
                                    "type": "Type",
                                    "amount": {
                                        "amount": "00.00",
                                        "currency": "Currency"
                                    }
                                },
                                "merchantDetails": {
                                    "merchantName": "Merchant_Name",
                                    "merchantCategoryCode": "Merchant_Category_Code",
                                    "merchantId": Merchant_Id
                                },
                                "localTimeZone": "XXX+HH:MM",
                                "terminalId": terminal_Id,
                                "chargeAmountVat": {
                                    "amount": "00.0000",
                                    "currency": "Currency"
                                },
                                "flags": [
                                    "Flag_Details"
                                ],
                                "cardInstrument": {
                                    "cardSchemeName": "Card_Scheme_Name",
                                    "instrumentType": "Instrument_Type",
                                    "name": "Name",
                                    "identification": "Identification_Details"
                                },
                                "creditorAccount": [
                                    {}
                                ],
                                "debtorAccount": {
                                    "identificationType": "Debit_Account",
                                    "identification": "Identification_Details",
                                    "name": "Name"
                                },
                                "transactionInformation": "Transaction_Info",
                                "bankTransactionCode": {
                                    "domain": "Domain",
                                    "domainCode": "Domain_Code",
                                    "family": "Family",
                                    "familyCode": "Family_Code",
                                    "subFamily": "Sub_Family",
                                    "subFamilyCode": "Sub_Family_Code"
                                },
                                "proprietaryBankTransactionCode": {
                                    "code": "Code",
                                    "issuer": "Issuer"
                                },
                                "creditorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "debtorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "billDetails": {
                                    "billerId": Biller_Id,
                                    "billNumber": "Bill_Number",
                                    "billPaymentType": "Bill_Payment_Type"
                                }
                            },
                            {
                                "transactionId": "Transaction_Id",
                                "transactionDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "transactionReference": "Transaction_Reference",
                                "transactionType": "Transaction_Type",
                                "subTransactionType": "Transaction_Sub_Type",
                                "paymentModes": "Payment_Modes",
                                "creditDebitIndicator": "Credit_Debit_Indicator",
                                "status": "Status",
                                "transactionMutability": "Transaction_Mutability",
                                "bookingDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "valueDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "amount": {
                                    "amount": "0.00",
                                    "currency": "Currency"
                                },
                                "chargeAmount": {
                                    "amount": "0.00",
                                    "currency": "Currency",
                                    "chargeIncluded": true or false
                                },
                                "balance": {
                                    "creditDebitIndicator": "Credit_Debit_Indicator",
                                    "type": "Type",
                                    "amount": {
                                        "amount": "00.00",
                                        "currency": "Currency"
                                    }
                                },
                                "merchantDetails": {
                                    "merchantName": "Merchant_Name",
                                    "merchantCategoryCode": "Merchant_Category_Code",
                                    "merchantId": Merchant_Id
                                },
                                "localTimeZone": "XXX+HH:MM",
                                "terminalId": terminal_Id,
                                "chargeAmountVat": {
                                    "amount": "00.0000",
                                    "currency": "Currency"
                                },
                                "flags": [
                                    "Flag_Details"
                                ],
                                "cardInstrument": {
                                    "cardSchemeName": "Card_Scheme_Name",
                                    "instrumentType": "Instrument_Type",
                                    "name": "Name",
                                    "identification": "Identification_Details"
                                },
                                "creditorAccount": [
                                    {}
                                ],
                                "debtorAccount": {
                                    "identificationType": "Debit_Account",
                                    "identification": "Identification_Details",
                                    "name": "Name"
                                },
                                "transactionInformation": "Transaction_Info",
                                "bankTransactionCode": {
                                    "domain": "Domain",
                                    "domainCode": "Domain_Code",
                                    "family": "Family",
                                    "familyCode": "Family_Code",
                                    "subFamily": "Sub_Family",
                                    "subFamilyCode": "Sub_Family_Code"
                                },
                                "proprietaryBankTransactionCode": {
                                    "code": "Code",
                                    "issuer": "Issuer"
                                },
                                "creditorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "debtorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "billDetails": {
                                    "billerId": Biller_Id,
                                    "billNumber": "Bill_Number",
                                    "billPaymentType": "Bill_Payment_Type"
                                }
                            },
                            {
                                "transactionId": "Transaction_Id",
                                "transactionDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "transactionReference": "Transaction_Reference",
                                "transactionType": "Transaction_Type",
                                "subTransactionType": "Transaction_Sub_Type",
                                "paymentModes": "Payment_Modes",
                                "creditDebitIndicator": "Credit_Debit_Indicator",
                                "status": "Status",
                                "transactionMutability": "Transaction_Mutability",
                                "bookingDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "valueDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "amount": {
                                    "amount": "0.00",
                                    "currency": "Currency"
                                },
                                "chargeAmount": {
                                    "amount": "0.00",
                                    "currency": "Currency",
                                    "chargeIncluded": true or false
                                },
                                "balance": {
                                    "creditDebitIndicator": "Credit_Debit_Indicator",
                                    "type": "Type",
                                    "amount": {
                                        "amount": "00.00",
                                        "currency": "Currency"
                                    }
                                },
                                "merchantDetails": {
                                    "merchantName": "Merchant_Name",
                                    "merchantCategoryCode": "Merchant_Category_Code",
                                    "merchantId": Merchant_Id
                                },
                                "localTimeZone": "XXX+HH:MM",
                                "terminalId": terminal_Id,
                                "chargeAmountVat": {
                                    "amount": "00.0000",
                                    "currency": "Currency"
                                },
                                "flags": [
                                    "Flag_Details"
                                ],
                                "cardInstrument": {
                                    "cardSchemeName": "Card_Scheme_Name",
                                    "instrumentType": "Instrument_Type",
                                    "name": "Name",
                                    "identification": "Identification_Details"
                                },
                                "creditorAccount": [
                                    {}
                                ],
                                "debtorAccount": {
                                    "identificationType": "Debit_Account",
                                    "identification": "Identification_Details",
                                    "name": "Name"
                                },
                                "transactionInformation": "Transaction_Info",
                                "bankTransactionCode": {
                                    "domain": "Domain",
                                    "domainCode": "Domain_Code",
                                    "family": "Family",
                                    "familyCode": "Family_Code",
                                    "subFamily": "Sub_Family",
                                    "subFamilyCode": "Sub_Family_Code"
                                },
                                "proprietaryBankTransactionCode": {
                                    "code": "Code",
                                    "issuer": "Issuer"
                                },
                                "creditorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "debtorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "billDetails": {
                                    "billerId": Biller_Id,
                                    "billNumber": "Bill_Number",
                                    "billPaymentType": "Bill_Payment_Type"
                                }
                            },
                            {
                                "transactionId": "Transaction_Id",
                                "transactionDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "transactionReference": "Transaction_Reference",
                                "transactionType": "Transaction_Type",
                                "subTransactionType": "Transaction_Sub_Type",
                                "paymentModes": "Payment_Modes",
                                "creditDebitIndicator": "Credit_Debit_Indicator",
                                "status": "Status",
                                "transactionMutability": "Transaction_Mutability",
                                "bookingDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "valueDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "amount": {
                                    "amount": "0.00",
                                    "currency": "Currency"
                                },
                                "chargeAmount": {
                                    "amount": "0.00",
                                    "currency": "Currency",
                                    "chargeIncluded": true or false
                                },
                                "balance": {
                                    "creditDebitIndicator": "Credit_Debit_Indicator",
                                    "type": "Type",
                                    "amount": {
                                        "amount": "00.00",
                                        "currency": "Currency"
                                    }
                                },
                                "merchantDetails": {
                                    "merchantName": "Merchant_Name",
                                    "merchantCategoryCode": "Merchant_Category_Code",
                                    "merchantId": Merchant_Id
                                },
                                "localTimeZone": "XXX+HH:MM",
                                "terminalId": terminal_Id,
                                "chargeAmountVat": {
                                    "amount": "00.0000",
                                    "currency": "Currency"
                                },
                                "flags": [
                                    "Flag_Details"
                                ],
                                "cardInstrument": {
                                    "cardSchemeName": "Card_Scheme_Name",
                                    "instrumentType": "Instrument_Type",
                                    "name": "Name",
                                    "identification": "Identification_Details"
                                },
                                "creditorAccount": [
                                    {}
                                ],
                                "debtorAccount": {
                                    "identificationType": "Debit_Account",
                                    "identification": "Identification_Details",
                                    "name": "Name"
                                },
                                "transactionInformation": "Transaction_Info",
                                "bankTransactionCode": {
                                    "domain": "Domain",
                                    "domainCode": "Domain_Code",
                                    "family": "Family",
                                    "familyCode": "Family_Code",
                                    "subFamily": "Sub_Family",
                                    "subFamilyCode": "Sub_Family_Code"
                                },
                                "proprietaryBankTransactionCode": {
                                    "code": "Code",
                                    "issuer": "Issuer"
                                },
                                "creditorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "debtorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "billDetails": {
                                    "billerId": Biller_Id,
                                    "billNumber": "Bill_Number",
                                    "billPaymentType": "Bill_Payment_Type"
                                }
                            },
                            {
                                "transactionId": "Transaction_Id",
                                "transactionDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "transactionReference": "Transaction_Reference",
                                "transactionType": "Transaction_Type",
                                "subTransactionType": "Transaction_Sub_Type",
                                "paymentModes": "Payment_Modes",
                                "creditDebitIndicator": "Credit_Debit_Indicator",
                                "status": "Status",
                                "transactionMutability": "Transaction_Mutability",
                                "bookingDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "valueDateTime": "YYYY-MM-DDTHH:MM:SS.SSSZ",
                                "amount": {
                                    "amount": "0.00",
                                    "currency": "Currency"
                                },
                                "chargeAmount": {
                                    "amount": "0.00",
                                    "currency": "Currency",
                                    "chargeIncluded": true or false
                                },
                                "balance": {
                                    "creditDebitIndicator": "Credit_Debit_Indicator",
                                    "type": "Type",
                                    "amount": {
                                        "amount": "00.00",
                                        "currency": "Currency"
                                    }
                                },
                                "merchantDetails": {
                                    "merchantName": "Merchant_Name",
                                    "merchantCategoryCode": "Merchant_Category_Code",
                                    "merchantId": Merchant_Id
                                },
                                "localTimeZone": "XXX+HH:MM",
                                "terminalId": terminal_Id,
                                "chargeAmountVat": {
                                    "amount": "00.0000",
                                    "currency": "Currency"
                                },
                                "flags": [
                                    "Flag_Details"
                                ],
                                "cardInstrument": {
                                    "cardSchemeName": "Card_Scheme_Name",
                                    "instrumentType": "Instrument_Type",
                                    "name": "Name",
                                    "identification": "Identification_Details"
                                },
                                "creditorAccount": [
                                    {}
                                ],
                                "debtorAccount": {
                                    "identificationType": "Debit_Account",
                                    "identification": "Identification_Details",
                                    "name": "Name"
                                },
                                "transactionInformation": "Transaction_Info",
                                "bankTransactionCode": {
                                    "domain": "Domain",
                                    "domainCode": "Domain_Code",
                                    "family": "Family",
                                    "familyCode": "Family_Code",
                                    "subFamily": "Sub_Family",
                                    "subFamilyCode": "Sub_Family_Code"
                                },
                                "proprietaryBankTransactionCode": {
                                    "code": "Code",
                                    "issuer": "Issuer"
                                },
                                "creditorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "debtorAgent": {
                                    "identificationType": "Identification_Type",
                                    "identification": "Identification",
                                    "postalAddress": {
                                        "addressType": "Address_Type",
                                        "streetName": "Street_Name",
                                        "buildingNumber": "Building_Number",
                                        "postalCode": "Postal_Code",
                                        "city": "City_Name",
                                        "country": "Country",
                                        "shortAddress": "Short_Address",
                                        "unitNumber": Unit_Number,
                                        "secondaryNumber": "Secondary_Number",
                                        "district": "District"
                                    },
                                    "name": "Name"
                                },
                                "billDetails": {
                                    "billerId": Biller_Id,
                                    "billNumber": "Bill_Number",
                                    "billPaymentType": "Bill_Payment_Type"
                                }
                            },
            "links": {
                "self": "https://"
            },
            "meta": {
                "totalPages": 0
            }
        }
    ]
}

Response description

JSON TagDescription
successProcess success status represented as True or False
payloadPayload tag carrying response information
codeUnique bank code identification
dataTag carrying accounts and transactions data included in the response
accountIdUnique account identification
transactionsTag carrying account transactions information
transactionIdUnique transaction identification
transactionDateTimeTime and date of the transaction executed
transactionReferenceUnique transaction reference details
transactionTypeType of transaction
subTransactionTypeSub-type of the transaction
paymentModesMode of the payment
creditDebitIndicatorCredit or debit indicator for the transaction
statusStatus of the transaction
transactionMutabilityMutability factor of the transaction
bookingDateTimeDate and time of booking the transaction
valueDateTimeDate and time of transaction value
amountTag carrying transaction amount information
amountTransaction amount
currencyDefault currency of the account in which the transaction amount is indicated
chargeAmountTag carrying transaction charges information
amountTotal amount charged for the transaction
currencyDefault currency of account in which the transaction charge amount is indicated
chargeIncludedIndicates if the charge amount is included in transaction amount as true or false
balanceBalance info after the transaction
creditDebitIndicatorIndicates whether the balance is a credit or a debit balance
typeIndicator type details
amountTag carrying balance amount information
amountAvailable amount balance
currencyCurrency in which the balance is indicated
merchantDetailsTag carrying merchant details
merchantNameName of the merchant
merchantCategoryCodeAssigned merchant category code
merchantIdUnique merchant identification
localTimeZoneLocal time zone information
terminalIdUnique terminal identification
chargeAmountVatTag carrying VAT amount charges and details
amountVAT amount charged
currencyCurrency of VAT amount charged indicated
flagsTag carrying flags as array of strings
cardInstrumentTag carrying card details
cardSchemeNameScheme name description of the card
instrumentTypeType of instrument used for the card payment
nameName on the card
identificationUnique card identification
creditorAccountTag carrying creditor account information
debtorAccountTag carrying debtor account information
identificationTypeType of identification of the account
identificationAccount identification details
nameName of the account holder
transactionInformationDetails of the transaction information
bankTransactionCodeTag carrying transaction bank codes
domainDomain details
domainCodeDomain code
familyDomain family details
familyCodeDomain family code
subFamilyDomain sub-family details
subFamilyCodeDomain sub-family code
proprietaryBankTransactionCodeTag representing proprietary bank transaction code and details
codeUnique proprietary transaction code
issuerName of the issuer of the code
creditorAgentTag carrying creditor agent information
debtorAgentTag carrying debtor agent information
identificationTypeType of identification of the creditor/debtor account
identificationUnique identification details of the creditor/debtor account
postalAddressPostal address of the creditor/debtor account
addressTypeAddress type on the creditor/debtor account
streetNameStreet name on the creditor/debtor account
buildingNumberBuilding number of the creditor/debtor account
postalCodePostal code on the creditor/debtor
cityCity of the creditor/debtor
countryCountry of the creditor/debtor
shortAddressShort address of the creditor/debtor
unitNumberUnit number of the creditor/debtor
secondaryNumberSecondary number of the creditor/debtor
districtDistrict of the creditor/debtor
nameName of the creditor/debtor
billDetailsTag carrying bill details
billerIdUnique biller identification
billNumberBill number
billPaymentTypePayment type for the bill
linksRedirect link
selfOwn link/URL details
metaMeta tag
totalPagesInformation displayed in terms of pages