menu

Create a marketplace entity

TxB APIs allow clients to onboard entities associated to their own. Once the entities have been created, accounts can be opened and clients can make payments, retrieve reporting, and request FX rates. This guide will explain the steps necessary to open an entity.

Step by step guide

Step 1 - Create an entity

You can create an entity linked to your own by using the entities API. To ensure proper linkage it's important that the “role” specified is aligned with the type of entity you are creating:

RoleMeaning
MARKETPLACE_USEREntity is associated with an FBO structure
SPONSORSHIP_USEREntity is associated with BIN sponsorship product
NESTEDEntity is approved for 4th party payments

POST /v2/entities/BUSINESS with a representative payload:

{
    "businessEntityRequest": {
        "requestId": "MyRequest",
        "branchCountry": "US",
        "role": "MARKETPLACE_USER",
        "legalName": "Wayne Enterpises Inc",
        "legalStructure": "CORP",
        "addresses": [
            {
                "addressLines": [
                    "Wayne Tower"
                ],
                "city": "Gotham",
                "postalCode": "GO 10030",
                "countryISOCode": "US",
			“…”
            }
	    ]
    }
}

Once submitted you should receive a 200 okay response detailing the associated entityId.

{
    "message": "8C1BFE0D82374B6DBDDA2617CAD12269"
}

Step 2 – Monitor status of onboarding request

You can monitor the status of your onboarding by using the v1 entities API.

GET /v1/entities/entityRequests/8C1BFE0D82374B6DBDDA2617CAD12269 returns:

{
    "entityId": "8C1BFE0D82374B6DBDDA2617CAD12269",
    "message": null,
    "status": "IN_PROGRESS"
}

Once the entity onboarding request has been reviewed (where applicable) and created then the status will show as “COMPLETED”.


Step 3 – View your entity

Once your entities have been created then you can retrieve the details. If the entity onboarding is not in a “COMPLETED” status then the entity details will not be visible, and you can return to ‘Step 2’ to monitor the status.

GET /v2/entities/8C1BFE0D82374B6DBDDA2617CAD12269 returns:

{
    "entityId": "8C1BFE0D82374B6DBDDA2617CAD12269 ",
    "aliasId": " Wayne Enterpises Inc ",
    "status": "ACTIVE",
    "entityData": {
        "businessEntity": {
            "legalName": " Wayne Enterpises Inc ",
            "legalStructure": "CORP",
            "addresses": []
		},
		“…”
	},
	“…”
}

Useful Information

Once you have an active entity then you can proceed to opening virtual & multi-currency accounts.

In order to create an account linked to a MARKETPLACE_USER entity you must use some of the information from GET/v2/entities/{entityId}. All account fields below exist within the ownershipAndControl object on POST/v2/accounts/VIRTUAL.

EntitiesAccountsRelated Detail
entityIddepositorEntityId-
entityData.businessEntity.addresses.addressIdaddressIdPPB
entityData.businessEntity.persons.personIdrelatedPersons.personIdAUTHORIZED_PERSON

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.