Retrieve sub-entity details
Last updated: December 24, 2025
You can retrieve the details of an existing sub-entity on your platform by using the Dashboard, or the API.
To retrieve details of a sub-entity in the Dashboard:
- Sign in to the Dashboard.
- Go to Payments > Processing > Sub-entities.
- On the Sub-entities page, select the sub-entity to edit.
- On the Activity page, select Manage account.
The Manage account page opens and displays all the details of the sub-entity.
To retrieve the details of a sub-entity, call the Get entity details endpoint, and provide the sub-entity ID as the {id} path parameter. For example, https://[prefix].api.checkout.com/accounts/entities/ent_nofjig36ypra6236f4tfm5bvui.
Information
Your base URL [prefix] is unique. To learn how to retrieve your unique base URLs for the sandbox and production environments, see API endpoints.
get
https://[prefix].api.checkout.com/accounts/entities/{id}
The response returns all data provided about the sub-entity, including its capabilities, which informs whether this sub-entity can process payments.
If the sub-entity is in requirements_due status, the response also returns a requirements_due object that lists the affected fields along with the reason each field was rejected.
1{2"id": "ent_nofjig36ypra6236f4tfm5bvui",3"reference": "CAKE12345",4"status": "pending",5"capabilities": {6"payments": {7"enabled": false8},9"payouts": {10"enabled": false11}12},13"profile": {14"default_holding_currency": "GBP",15"urls": ["https://www.thecakeshop.com"],16"mccs": ["5814"]17},18"company": {19"legal_name": "The Cake Shop Inc.",20"trading_name": "The Cake Shop",21"principal_address": {22"address_line1": "654 Example St.",23"city": "Edinburgh",24"zip": "EH9 2XY",25"country": "GB"26},27"representatives": []28},29"contact_details": {30"phone": {31"number": "7700900000"32},33"email_addresses": {34"primary": "[email protected]"35}36},37"instruments": [],38"requirements_due": [],39"_links": {40"self": {41"href": "https://[prefix].api.sandbox.checkout.com/accounts/entities/ent_nofjig36ypra6236f4tfm5bvui"42}43}44}
Information
The profile.default_holding_currency field is required for Full account types. For Lite accounts, we set a default value in case you decide to upgrade to a Full account type later. This doesn't affect how funds are routed or held for this sub-entity.