menu

Integration via API - Step 6: Reconcile

Reconciliation

Widget Co. employs a comprehensive hybrid approach to help achieve accurate debiting and crediting of all receivables and disbursements. This methodology maintains consistent alignment between the account ledger and its corresponding transaction log:

  • Intraday Payables Reconciliation: Outgoing payments are systematically matched with account ledger debits.
  • Intraday Receivables Reconciliation: Incoming account ledger credits are reconciled against open invoices and treasury cash movements.
  • End-of-Day (EOD) Reconciliation: Internal ledger records are balanced with those of the TxB account ledger at the close of each business day.
  • Exception Management: Manual verification is conducted for ad-hoc transactions through diligent API polling. The following sections present examples of these processes utilizing payment data from “Step 3: Payout.” These examples include detailed processes for batch payments, such as ACH or SEPA, as well as wire payments, including Fedwire or CHAPS.

Intraday Payables Reconciliation for Batch Payments

Batch or low-value payment systems include:

  • US: ACH
  • UK: BACS
  • EU: SEPA

Widget Co. utilises the TxB Transactions API to reconcile outgoing batch payments. Taking the batch payment initiated at “Step 3: Payout” as an illustrative example, the following outlines the reconciliation process. Key payment details:

  • Payment Request ID: PaymentReqID0000001, total amount: USD 406.00
  • Payment #1 End-To-End ID: TxE2EID000001, amount: USD 106.00
  • Payment #2 End-To-End ID: TxE2EID000002, amount: USD 300.00 The Widget Co. account must display a single debit representing the total value of all transactions within the batch. In this instance, the debit will be USD 406.00.

Request GET https://api.test.txb.gs.com/v2/reports/transactionReports?referenceNumber=250000079648&businessDate=2026-01-27

Response


{
    "transactions": [
        {
            "postingDate": "2026-01-27T15:06:52Z",
            "valueDate": "2026-01-27",
            "transactionType": "ACH Credit Payment",
            "transactionTypeCode": {
                "domainCode": "PMNT",
                "familyCode": "ICDT",
                "subFamilyCode": "ACDT"
            },
            "debitOrCredit": "DEBIT",
            "amount": 406.00,
            "amountCurrency": "USD",
            "identifiers": {
                "paymentRequestId": "PaymentReqID0000001",
                "paymentEndToEndId": "null",
                "gsUniquePaymentId": "GPB2533118886542",
                "railReferenceId": {
                    "rail": "ACH” 
                }
            }
        }
    ]
}
//Only relevant fields added for easy reading

// Key Reconciliation Fields are: "paymentRequestId": "PaymentReqID0000001" and "amount": 406.00

Occasionally, a payout batch (e.g. BACS, SEPA CT) may be divided into two or more debit entries within the account. In such instances, the Transaction API response will return the corresponding batch debit entries and will have the same paymentRequestId in the identifiers.

Intraday Payables Reconciliation for Wire and Real-Time Payments

High-value wires and real-time payment systems include

  • US: Fedwire and Real Time Payments (RTP)
  • UK: CHAPS and Faster Payments (FPS)
  • EU: Target 2 and SEPA Instant

Widget Co. also utilizes the TxB Transactions API to reconcile outgoing wire payments. In this occasion, taking the wire payment initiated at "Step 3: Payout" as the example, here is reconciliation process.

Widget Co. initiated an API payments request at "Step 3 Payout" combined of two payments

  • Payment Request ID PaymentReqID0000002, total amount of USD 6012.00
  • FedWire Payment #1 End_To_End ID TxE2EID000021, amount USD 4012.00
  • FedWire Payment #2 End_To_End ID TxE2EID000022, amount USD 2000.00 In this instance, the Widget Co. account must display one debit for each payment in the Originate Payment API request, one debit for USD 4012.00 and a second debit for USD 2000.00.

Request GET https://api.test.txb.gs.com/v2/reports/transactionReports?referenceNumber=250000079648&businessDate=2026-01-27

Response


{
    "transactions": [
        {
            "postingDate": "2026-01-27T15:06:52Z",
            "valueDate": "2026-01-27",
            "transactionType": "Outgoing Wire",
            "transactionTypeCode": {
                "domainCode": "PMNT",
                "familyCode": "ICDT",
                "subFamilyCode": "DMCT"
            },
            "debitOrCredit": "DEBIT",
            "amount": 4012.00,
            "amountCurrency": "USD",
            "identifiers": {
                "paymentRequestId": "PaymentReqID0000002",
                "paymentEndToEndId": "TxE2EID000021",
                "railReferenceId": {
                    "rail": "FEDWIRE"
                }
            }
        },
        {
            "postingDate": "2026-01-27T15:06:52Z",
            "valueDate": "2026-01-27",
            "transactionType": "Outgoing Wire",
            "transactionTypeCode": {
                "domainCode": "PMNT",
                "familyCode": "ICDT",
                "subFamilyCode": "DMCT"
            },
            "debitOrCredit": "DEBIT",
            "amount": 2000.00,
            "amountCurrency": "USD",
            "identifiers": {
                "paymentRequestId": "PaymentReqID0000002",
                "paymentEndToEndId": "TxE2EID000022",
                "railReferenceId": {
                    "rail": "FEDWIRE2"
                }
            }
        }
    ]
}
//Only relevant fields added for easy reading 
// Key Reconciliation Fields for the payments and the transactions entries are:
// 1. "paymentEndToEndId": "TxE2EID000021" and "amount": 4012.00
// 2. "paymentEndToEndId": "TxE2EID000022" and "amount": 2000.00

Intraday Receivables Reconciliation

The Widget Co. Accounts Receivables Team is responsible for reconciling incoming payments credited to virtual accounts with issued invoices and treasury cash movements. This reconciliation process leverages data from the originating bank, such as an Invoice Id, to accurately identify specific payments. While both Webhooks and the Transactions API offer solutions for receivables reconciliation, Widget Co. has opted for Webhooks to avoid routine data polling. The team utilizes the following attributes during reconciliation:

Field Description
paymentEndToEndIdProvided by the payment rail, if the sender of the payment has provided any specific identifier.
remittanceInfoAccompanying each incoming payment, sender is expected to provide information like Invoice number or purpose of the payment.
debitOrCreditFor incoming receivables, the value should be be CREDIT.
amountThe amount of the received payment.
eventNameThe event name should be INCOMING_PAYMENT.RECEIVED.

// Webhook Payload for Incoming Credit
// only relevant fields added for easier reading
{
    "deliveryId": "7687ba53-fbdf-4a86-a7f2-820d6cac946b",
    "events": {
        "eventId": "840773d6-0765-4e7d-88d3-b429ce34e8cb",
        "eventData": {
            "amount": 1530,                               // Individual Payment Amount
            "valueDate": "2026-01-27",
            "debitOrCredit": "CREDIT",                    // CREDIT Transaction
            "debtorAccount": {
                "accountNumber": "12345678",
                "bankIdentifier": {
                    "bic": "CITIUS33XXX"
                },
                "accountHolderName": "TEST INC"
            },
            "amountCurrency": "USD",
            "remittanceInfo": [
                "Invoice 123"     // only available if the sender has mentioned this or similar reference
            ],
            "creditorAccount": {
                "accountNumber": "123456778",
                "accountHolderName": "Widget Co"
            },
            "transactionType": "Incoming Wire",
            "gsUniquePaymentId": "GI121212121",
            "paymentEndToEndId": "2JJ3144ABQW"            // Individual Payment End to End ID
        },
        "eventName": "INCOMING_PAYMENT.RECEIVED",
        "eventTimestamp": "2026-01-27T15:06:52.1769526412Z"
    }
}

// Key Fields for Reconciliation:
// "amount": 1530
// "debitOrCredit": "CREDIT",
// "gsUniquePaymentId": "GI121212121"
// "paymentEndToEndId": "2JJ3144ABQW" 
// "remittanceInfo": [ "Invoice 123" ]

End-of-Day (EOD) Reconciliation

At the close of business (e.g., 01:00:00 a.m. UTC on T+1), Widget Co. utilizes the Transactions API to verify that all account credits and debits have been appropriately recorded. Any transaction that cannot be identified are flagged as reconciliation break and subject to further review.

// a new transaction added with "paymentEndToEndId": "TxE2EID000033" and "amount": 342.65
{
    "transactions": [
        {
            "postingDate": "2026-01-27T16:46:52Z",
            "valueDate": "2026-01-27",
            "transactionType": "Outgoing Wire",
            "transactionTypeCode": {
                "domainCode": "PMNT",
                "familyCode": "ICDT",
                "subFamilyCode": "DMCT"
            },
            "debitOrCredit": "DEBIT",
            "amount": 342.65,
            "amountCurrency": "USD",
            "identifiers": {
                "paymentRequestId": "PaymentReqID0000003",
                "paymentEndToEndId": "TxE2EID000033",
                "railReferenceId": {
                    "rail": "FEDWIRE2"
                }
            }
        },
        ..... 
        .....
    ]
}

Exception Management

During the end-of-day reconciliation process, an unidentified credit was identified in Widget Co.’s “SA Cloud Services” AP virtual account. Since incoming and outgoing payments are segregated in distinct payables and receivables virtual accounts, this exception can be addressed by the Account Payables team. By leveraging the Transactions API, comprehensive payment details are accessible for manual tracking and reconciliation of the unexpected credit.

{
    "transactions": [
        {
            "postingDate": "2026-01-27T17:06:52Z",
            "valueDate": "2026-01-27",
            "transactionType": "Incoming Wire",
            "transactionTypeCode": {
                "domainCode": "PMNT",
                "familyCode": "RCDT",
                "subFamilyCode": "DMCT"
            },
            "transactionDescription": "From: Buyer, Remittance Info: Invoice 123, Client Ref ID: 2JJ3144ABQW, GS ID: GI121212121...",
            "debitOrCredit": "CREDIT",                    // CREDIT Transaction
            "amount": 1530.00,                            // Individual Payment Amount
            "amountCurrency": "USD",
            "identifiers": {
                "paymentEndToEndId": "2JJ3144ABQW",       // Individual Payment End to End ID
                "railReferenceId": {
                    "rail": "FEDWIRE"
                }
            },
            "messagesFromOriginator": {
                "remittanceInfo": [
                    "RTN/YR PAY REF 8988345…. / UNKNOWN BENE"
                ]
            }
        }
        ....
        ....
    ]
}

Upon reviewing the complete transaction description, the reconciliation team observes that the originating bank supplied the following details: "RTN/YR PAY REF 8988345… / UNKNOWN BENE." This information enables the team to link the credit to a previously returned payment issued to the provider the prior week. With these records, Widget Co. is able to re-initiate the payment using the accurate beneficiary name.

Thank you for following our API integration best practices. Our goal is to ensure that these resources, alongside our comprehensive API collection, provide a seamless and efficient integration experience with Goldman Sachs Transaction Banking (TxB). Your insights are essential to our evolution; we welcome your feedback and invite you to suggest additional topics or best practices by contacting our team at Txb-Product-Solutions@gs.com.

1: Connect2: Create Account3: Payout4: Payout Status5: Account Status6: Reconcile

GS DAP® is owned and operated by Goldman Sachs. This site is for informational purposes only and does not constitute an offer to provide, or the solicitation of an offer to provide access to or use of GS DAP®. Any subsequent commitment by Goldman Sachs to provide access to and / or use of GS DAP® would be subject to various conditions, including, amongst others, (i) satisfactory determination and legal review of the structure of any potential product or activity, (ii) receipt of all internal and external approvals (including potentially regulatory approvals); (iii) execution of any relevant documentation in a form satisfactory to Goldman Sachs; and (iv) completion of any relevant system / technology / platform build or adaptation required or desired to support the structure of any potential product or activity. All GS DAP® features may not be available in certain jurisdictions. Not all features of GS DAP® will apply to all use cases. Use of terms (e.g., "account") on GS DAP® are for convenience only and does not imply any regulatory or legal status by such term.

¹ Real-time data can be impacted by planned system maintenance, connectivity or availability issues stemming from related third-party service providers, or other intermittent or unplanned technology issues.

Transaction Banking services are offered by Goldman Sachs Bank USA ("GS Bank") and its affiliates. GS Bank is a New York State chartered bank, a member of the Federal Reserve System and a Member FDIC. For additional information, please see Bank Regulatory Information.

Certain solutions and Institutional Services described herein are provided via our Marquee platform. The Marquee platform is for institutional and professional clients only. This site is for informational purposes only and does not constitute an offer to provide the Marquee platform services described, nor an offer to sell, or the solicitation of an offer to buy, any security. Some of the services and products described herein may not be available in certain jurisdictions or to certain types of clients. Please contact your Goldman Sachs sales representative with any questions. Any data or market information presented on the site is solely for illustrative purposes. There is no representation that any transaction can or could have been effected on such terms or at such prices. Please see https://www.goldmansachs.com/disclaimer/sec-div-disclaimers-for-electronic-comms.html for additional information.

² Source: Goldman Sachs Asset Management, as of March 31, 2025.

Mosaic is a service mark of Goldman Sachs & Co. LLC. This service is made available in the United States by Goldman Sachs & Co. LLC and outside of the United States by Goldman Sachs International, or its local affiliates in accordance with applicable law and regulations. Goldman Sachs International and Goldman Sachs & Co. LLC are the distributors of the Goldman Sachs Funds. Depending upon the jurisdiction in which you are located, transactions in non-Goldman Sachs money market funds are affected by either Goldman Sachs & Co. LLC, a member of FINRA, SIPC and NYSE, or Goldman Sachs International. For additional information contact your Goldman Sachs representative. Goldman Sachs & Co. LLC, Goldman Sachs International, Goldman Sachs Liquidity Solutions, Goldman Sachs Asset Management, L.P., and the Goldman Sachs funds available through Goldman Sachs Liquidity Solutions and other affiliated entities, are under the common control of the Goldman Sachs Group, Inc.

Goldman Sachs & Co. LLC is a registered U.S. broker-dealer and futures commission merchant, and is subject to regulatory capital requirements including those imposed by the SEC, the U.S. Commodity Futures Trading Commission (CFTC), the Chicago Mercantile Exchange, the Financial Industry Regulatory Authority, Inc. and the National Futures Association.

FOR INSTITUTIONAL USE ONLY - NOT FOR USE AND/OR DISTRIBUTION TO RETAIL AND THE GENERAL PUBLIC.

This material is for informational purposes only. It is not an offer or solicitation to buy or sell any securities.

THIS MATERIAL DOES NOT CONSTITUTE AN OFFER OR SOLICITATION IN ANY JURISDICTION WHERE OR TO ANY PERSON TO WHOM IT WOULD BE UNAUTHORIZED OR UNLAWFUL TO DO SO. Prospective investors should inform themselves as to any applicable legal requirements and taxation and exchange control regulations in the countries of their citizenship, residence or domicile which might be relevant. This material is provided for informational purposes only and should not be construed as investment advice or an offer or solicitation to buy or sell securities. This material is not intended to be used as a general guide to investing, or as a source of any specific investment recommendations, and makes no implied or express recommendations concerning the manner in which any client's account should or would be handled, as appropriate investment strategies depend upon the client's investment objectives.

United Kingdom: In the United Kingdom, this material is a financial promotion and has been approved by Goldman Sachs Asset Management International, which is authorized and regulated in the United Kingdom by the Financial Conduct Authority.

European Economic Area (EEA): This marketing communication is disseminated by Goldman Sachs Asset Management B.V., including through its branches ("GSAM BV"). GSAM BV is authorised and regulated by the Dutch Authority for the Financial Markets (Autoriteit Financiële Markten, Vijzelgracht 50, 1017 HS Amsterdam, The Netherlands) as an alternative investment fund manager ("AIFM") as well as a manager of undertakings for collective investment in transferable securities ("UCITS"). Under its licence as an AIFM, the Manager is authorized to provide the investment services of (i) reception and transmission of orders in financial instruments; (ii) portfolio management; and (iii) investment advice. Under its licence as a manager of UCITS, the Manager is authorized to provide the investment services of (i) portfolio management; and (ii) investment advice.

Information about investor rights and collective redress mechanisms are available on www.gsam.com/responsible-investing (section Policies & Governance). Capital is at risk. Any claims arising out of or in connection with the terms and conditions of this disclaimer are governed by Dutch law.

To the extent it relates to custody activities, this financial promotion is disseminated by Goldman Sachs Bank Europe SE ("GSBE"), including through its authorised branches. GSBE is a credit institution incorporated in Germany and, within the Single Supervisory Mechanism established between those Member States of the European Union whose official currency is the Euro, subject to direct prudential supervision by the European Central Bank (Sonnemannstrasse 20, 60314 Frankfurt am Main, Germany) and in other respects supervised by German Federal Financial Supervisory Authority (Bundesanstalt für Finanzdienstleistungsaufsicht, BaFin) (Graurheindorfer Straße 108, 53117 Bonn, Germany; website: www.bafin.de) and Deutsche Bundesbank (Hauptverwaltung Frankfurt, Taunusanlage 5, 60329 Frankfurt am Main, Germany).

Switzerland: For Qualified Investor use only - Not for distribution to general public. This is marketing material. This document is provided to you by Goldman Sachs Bank AG, Zürich. Any future contractual relationships will be entered into with affiliates of Goldman Sachs Bank AG, which are domiciled outside of Switzerland. We would like to remind you that foreign (Non-Swiss) legal and regulatory systems may not provide the same level of protection in relation to client confidentiality and data protection as offered to you by Swiss law.

Asia excluding Japan: Please note that neither Goldman Sachs Asset Management (Hong Kong) Limited ("GSAMHK") or Goldman Sachs Asset Management (Singapore) Pte. Ltd. (Company Number: 201329851H ) ("GSAMS") nor any other entities involved in the Goldman Sachs Asset Management business that provide this material and information maintain any licenses, authorizations or registrations in Asia (other than Japan), except that it conducts businesses (subject to applicable local regulations) in and from the following jurisdictions: Hong Kong, Singapore, India and China. This material has been issued for use in or from Hong Kong by Goldman Sachs Asset Management (Hong Kong) Limited and in or from Singapore by Goldman Sachs Asset Management (Singapore) Pte. Ltd. (Company Number: 201329851H).

Australia: This material is distributed by Goldman Sachs Asset Management Australia Pty Ltd ABN 41 006 099 681, AFSL 228948 (‘GSAMA’) and is intended for viewing only by wholesale clients for the purposes of section 761G of the Corporations Act 2001 (Cth). This document may not be distributed to retail clients in Australia (as that term is defined in the Corporations Act 2001 (Cth)) or to the general public. This document may not be reproduced or distributed to any person without the prior consent of GSAMA. To the extent that this document contains any statement which may be considered to be financial product advice in Australia under the Corporations Act 2001 (Cth), that advice is intended to be given to the intended recipient of this document only, being a wholesale client for the purposes of the Corporations Act 2001 (Cth). Any advice provided in this document is provided by either of the following entities. They are exempt from the requirement to hold an Australian financial services licence under the Corporations Act of Australia and therefore do not hold any Australian Financial Services Licences, and are regulated under their respective laws applicable to their jurisdictions, which differ from Australian laws. Any financial services given to any person by these entities by distributing this document in Australia are provided to such persons pursuant to the respective ASIC Class Orders and ASIC Instrument mentioned below.

  • Goldman Sachs Asset Management, LP (GSAMLP), Goldman Sachs & Co. LLC (GSCo), pursuant ASIC Class Order 03/1100; regulated by the US Securities and Exchange Commission under US laws.
  • Goldman Sachs Asset Management International (GSAMI), Goldman Sachs International (GSI), pursuant to ASIC Class Order 03/1099; regulated by the Financial Conduct Authority; GSI is also authorized by the Prudential Regulation Authority, and both entities are under UK laws.
  • Goldman Sachs Asset Management (Singapore) Pte. Ltd. (GSAMS), pursuant to ASIC Class Order 03/1102; regulated by the Monetary Authority of Singapore under Singaporean laws
  • Goldman Sachs Asset Management (Hong Kong) Limited (GSAMHK), pursuant to ASIC Class Order 03/1103 and Goldman Sachs (Asia) LLC (GSALLC), pursuant to ASIC Instrument 04/0250; regulated by the Securities and Futures Commission of Hong Kong under Hong Kong laws

No offer to acquire any interest in a fund or a financial product is being made to you in this document. If the interests or financial products do become available in the future, the offer may be arranged by GSAMA in accordance with section 911A(2)(b) of the Corporations Act. GSAMA holds Australian Financial Services Licence No. 228948. Any offer will only be made in circumstances where disclosure is not required under Part 6D.2 of the Corporations Act or a product disclosure statement is not required to be given under Part 7.9 of the Corporations Act (as relevant).

FOR DISTRIBUTION ONLY TO FINANCIAL INSTITUTIONS, FINANCIAL SERVICES LICENSEES AND THEIR ADVISERS. NOT FOR VIEWING BY RETAIL CLIENTS OR MEMBERS OF THE GENERAL PUBLIC

Canada: This presentation has been communicated in Canada by GSAM LP, which is registered as a portfolio manager under securities legislation in all provinces of Canada and as a commodity trading manager under the commodity futures legislation of Ontario and as a derivatives adviser under the derivatives legislation of Quebec. GSAM LP is not registered to provide investment advisory or portfolio management services in respect of exchange-traded futures or options contracts in Manitoba and is not offering to provide such investment advisory or portfolio management services in Manitoba by delivery of this material.

Japan: This material has been issued or approved in Japan for the use of professional investors defined in Article 2 paragraph (31) of the Financial Instruments and Exchange Law ("FIEL"). Also, any description regarding investment strategies on or funds as collective investment scheme under Article 2 paragraph (2) item 5 or item 6 of FIEL has been approved only for Qualified Institutional Investors defined in Article 10 of Cabinet Office Ordinance of Definitions under Article 2 of FIEL.

Interest Rate Benchmark Transition Risks: This transaction may require payments or calculations to be made by reference to a benchmark rate ("Benchmark"), which will likely soon stop being published and be replaced by an alternative rate, or will be subject to substantial reform. These changes could have unpredictable and material consequences to the value, price, cost and/or performance of this transaction in the future and create material economic mismatches if you are using this transaction for hedging or similar purposes. Goldman Sachs may also have rights to exercise discretion to determine a replacement rate for the Benchmark for this transaction, including any price or other adjustments to account for differences between the replacement rate and the Benchmark, and the replacement rate and any adjustments we select may be inconsistent with, or contrary to, your interests or positions. Other material risks related to Benchmark reform can be found at https://www.gs.com/interest-rate-benchmark-transition-notice. Goldman Sachs cannot provide any assurances as to the materialization, consequences, or likely costs or expenses associated with any of the changes or risks arising from Benchmark reform, though they may be material. You are encouraged to seek independent legal, financial, tax, accounting, regulatory, or other appropriate advice on how changes to the Benchmark could impact this transaction.

Confidentiality: No part of this material may, without GSAM's prior written consent, be (i) copied, photocopied or duplicated in any form, by any means, or (ii) distributed to any person that is not an employee, officer, director, or authorized agent of the recipient.

GSAM Services Private Limited (formerly Goldman Sachs Asset Management (India) Private Limited) acts as the Investment Advisor, providing non-binding non-discretionary investment advice to dedicated offshore mandates, involving Indian and overseas securities, managed by GSAM entities based outside India. Members of the India team do not participate in the investment decision making process.

© 2026 Goldman Sachs. All rights reserved.