Get the account dimensions. Run in API Explorer

GET /api/AccountDimensions

This request should be used to retrieve the account dimension data for specified engagement(s). This includes account hierarchies, classifications, and configuration details. The data contained here will be similar to what can be seen in Balancer under Administration->Account settings.

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/AccountDimensions
curl \
 --request GET 'https://analyticsapi.adra.com/balancer/api/AccountDimensions' \
 --user "username:password"
Response examples (200)
[
  {
    "Account": "1000100 General Account",
    "RiskType": "Low",
    "BaseClass": "Not set",
    "Account_Id": 119097,
    "AccountName": "General Account",
    "AccountType": "Normal",
    "Account_Key": 294099,
    "AccountClass": "Asset",
    "CarryForward": "Never",
    "IsKeyAccount": "True",
    "AccountNumber": "1000",
    "SystemCertify": "Not allowed",
    "AccountPurpose": "",
    "Engagement_Key": 4316,
    "AccountSubClass": null,
    "LegalEntity_Key": 651242,
    "ParentAccountId": 0,
    "ReviewFrequency": "Month end",
    "AccountProcedure": "",
    "ApproveFrequency": "Month end",
    "PrepareFrequency": "Month end",
    "ParentAccount_Key": 0,
    "ReconciliationType": "Basic"
  }
]