menu

Create a multi-currency account

TxB APIs allow clients to create multi-currency accounts, which is a single account number associated with virtual accounts denominated in multiple currencies. Multi-currency accounts allow for payments/receipts and reporting to be consolidated to a single account number, rather than having an account per currency.
Clients can use this flexible ledger tool to better track and allocate money movement in an automated manner which helps streamline processes. With account opening through APIs, clients are able to improve process efficiency and reduce manual effort.

Step by step guide

Step 1 - Reserve a list of accounts

The first step in multi-currency account creation, retrieving a pre-reserved set of account numbers. Your query can be filtered by branchCountry as a query parameter.

For clients in the United States, this will return 12-digit account numbers without any IBANs or bank identifiers. For clients outside of the United States, this will return account numbers, IBANs and bank identifier information. The reason for this is that the account number is only unique when coupled with the routingInfo key value pair.

GET /v2/accounts/reserved returns:

{
    "reservedAccountNumbers": [
        {
            "accountNumber": "80001319",
            "iban": "GB74GSLD04296280001319",	// only applicable for non-US accounts
       "bankIdentifier": {			// only applicable for non-US accounts
                "bic": "GSLDGB20",
                "routingInfo": {										        
         "code": "GBDSC",
                    "value": "042962"
                },
                (...)
            },
            (...)
        },
        {
            "accountNumber": "800400123987",
            "iban": null,
            ...
        },

Step 2 - Create a multi-currency account

Next you should use an account from the reserved response to open a multi-currency account. When opening an account for a non-US client, you must include the routingInfo provided.

POST /v2/accounts/MULTI_CURRENCY with this payload:

{
	"multiCurrencyAccountRequest": {
	    "requestId": "MCAOpening1",
	    "branchCountry": GB
	    "administrative": {
	    	"accountName": "My First MCA ",
	      "accountNickname": "MCA 1",
	      "accountPurposes": [
	            "COMMERCIAL_PAYMENTS"
	       ]
	    },
	    "accountIdentifiers": {
    	"accountNumber": "80001319",		// the account number from your reserved list
	    	"bankIdentifier": {			// the routingInfo from your reserved list
	    		"routingInfo": {
	    			"code": "GBDSC",
	    			"value": "042962"
			}
		},
		"ownershipAndControl": {
			(...)
	},
}

Step 3 - Monitor the status of an account request

To monitor the status of a request you can use the requests endpoint. Using the query parameter of requestType you’re able to check both CREATE and UPDATE requests.

GET /v2/accounts/requests/MCAOpening1?requestType=CREATE returns:

{
  "accountNumber": "80001319",
  "status": "COMPLETED"
}

Step 4 - Verify account creation

You can retrieve the details of the account you created.

GET /v2/accounts/80001319 returns:

{
  "type": "MULTI_CURRENCY",
  "accountStatus": "ACTIVE",
  "accountCurrency": null,
  "rate": null,
  "branchCountry": GB,
  "admistrative”: 
	"openDate": "2022-03-15T15:49:24.845Z",
  	"accountName": "My First MCA",
	"accountNickname": "MCA 1",
  ...
}

Step 5 – Create virtual accounts for each currency

You can open underlying currency accounts for your multi-currency account. This is achieved by creating a virtual account linked to a physical account of the same currency. In addition to the aforementioned parent account linkage, you must also include a multi-currency account linkage.

Opening your linked currency accounts is the same process as opening a virtual account with the additional linkage.

For example, to enable EUR for your MCA then you must open a virtual account with a EUR parent account.

POST /v2/accounts/VIRTUAL with this payload:

{
	"virtualAccountRequest": {
	    "requestId": "VIAOpeningForMCA",
	    "administrative": {
	    	"accountName": "My EUR VIA",
	      "accountNickname": "EUR VIA",
	      "depositorType": "WHOLESALE",
	      "accountPurposes": [
	            "COMMERCIAL_PAYMENTS"
	        ]
	    },
	    "accountIdentifiers": {
    	"accountNumber": "80001320"		// the account number from your reserved list
	    	"bankIdentifier": {			// the routingInfo from your reserved list
	    		"routingInfo": {
	    			"code": "GBDSC",
	    			"value": "042962"
			}
		},
		"ownershipAndControl": {
			(...)
		},
		"typeSpecificInfo": {
          		"virtualAccountInfo": {
           		"parentAccountNumber": "010109780" 	// the physical account with currency EUR
			"multiCurrencyAccountNumber": "80001319"	//multi-currency account opened above
			}

		}
	}
}

To enable USD for your MCA then open a virtual account with a USD parent account.

{
	"virtualAccountRequest": {
	    "requestId": "VIAOpeningForMCA2",
	    "administrative": {
	    	"accountName": "MY USD VIA",
	      "accountNickname": "USD VIA",
	      "depositorType": "WHOLESALE",
	      "accountPurposes": [
	            "COMMERCIAL_PAYMENTS"
	        ]
	    },
	    "accountIdentifiers": {
    	"accountNumber": "80001321",		// the account number from your reserved list
	    	"bankIdentifier": {			// the routingInfo from your reserved list
	    		"routingInfo": {
	    			"code": "GBDSC",
	    			"value": "042962"
			}
		},
		"ownershipAndControl": {
			"thirdPartyIndicator": true 	// true where depositor entity differs from parent account
			"depositorEntity": "F196FF3DAAAF4E939296CCB7808F6E74",
			"relatedPerson": "person_contact^519397AA4FFF4C3B93E4EC6429ED1E1B"
		},
		"typeSpecificInfo": {
          		"virtualAccountInfo": {
           		"parentAccountNumber": "010108400", 	// the physical account with currency USD
			"multiCurrencyAccountNumber": "80001319"	// multi-currency account opened above
			}

		}
	}
}

Step 6 – View your currency enabled MCA

Once your virtual accounts have been created then you can now begin to transact on your MCA in those currencies. To view the currencies associated to your MCA you can review the account by repeating step 4.

GET /v2/accounts/80001319 returns:

{
    "type": "MULTI_CURRENCY",
    "accountStatus": "ACTIVE",
    "accountCurrency": null,
    "rate": null,
    "branchCountry": "GB",
    "administrative": {
        "openDate": "2022-03-15T15:49:24.845Z",
        "accountName": "MCA TEST 1",
        "accountNickname": "MCA TEST 1",
        "depositorType": null,
        "accountPurposes": [
            "SUPPLIER_OR_VENDOR_MANAGEMENT"
        ],
        "accountPurposeOtherDescription": null
    },
    "accountIdentifiers": {
        "accountNumber": "80001319 ",
        "iban": "GB81GSLD04296280001319",
        "bankIdentifier": (...)
    },
    "ownershipAndControl": {
        "relatedEntities": [
            {
                "entityId": "BFE4BF250968487088D86B98F05480C1",
                "roleType": "DEPOSITOR"
            }
        ],
        "thirdPartyIndicator": true,
	 "addressId": "Address^28E45539E779326E92DD7F581B644CC1",
	 "relatedPersons": [
	    		{
	 	"personId": "ContactDetail^4F54B56F64973FD699185C5A0EBC5B24",
	    	"contactType": "AUTHORIZED_PERSON"		},
		]
    },
    "otherInfo": {
        "dacaInfo": null,
        "transactionData": [
            {
                "linkUrl": "https://api.uat.txb.gs.com/v2/reports/transactionReports?referenceNumber=80001320&businessDate=2022-05-25&limit=15&offset=0"
            },
            {
                "linkUrl": "https://api.uat.txb.gs.com/v2/reports/transactionReports?referenceNumber=80001321&businessDate=2022-05-25&limit=15&offset=0"
            }
        ]
    },
    "typeSpecificInfo": {
        "physicalDepositAccountInfo": null,
        "virtualAccountInfo": null,
        "multiCurrencyAccountInfo": {
            "currenciesSupported": [			// the linked VIA currencies are listed here
               	 "EUR"
             	 "USD"
            ]
        },
        "termAccountInfo": null
    }
}

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.
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.
Transaction Banking services are offered by Goldman Sachs Bank USA (“GS Bank”). GS Bank is a New York State chartered bank, a member of the Federal Reserve System and a Member FDIC.
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.
© 2025 Goldman Sachs. All rights reserved.