Gets the legal entity dimensions. Run in API Explorer

GET /api/LegalEntityDimensions

This request should be used to retrieve information around legal entities such as legal entity names, addresses, and currency configurations – as seen under the legal entity tab on the engagement in Setup.

Query parameters

  • engagement string

    Short Guid of desired engagement Ex - ESXmkya-nEeWMX-7_3fSxA or Guid of desired engagement Ex - 45c31339-96d0-4262-b051-c00f392685c1

Responses

  • 200 application/json
  • 404 application/json

    Not Found

  • 400 application/json

    Bad Request

  • 500 application/json

    Internal Server Error

GET /api/LegalEntityDimensions
curl \
 --request GET 'https://analyticsapi.adra.com/balancer/api/LegalEntityDimensions' \
 --user "username:password"
Response examples (200)
[
  {
    "City": "",
    "Status": "Active",
    "Country": "240",
    "ZipCode": "",
    "Address1": "",
    "Address2": "",
    "EntityCode": "1000x",
    "EntityName": "Company 4000",
    "IsCrossEntity": null,
    "Engagement_Key": 4316,
    "LegalEntity_Key": 7854,
    "EntityInformation": "",
    "EntityCurrencyCode": "EUR",
    "EntityCurrencyName": "Euro"
  }
]