GET accountsData/{accountId}/accountingCodes

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AccountingCodeTypeFullDto
NameDescriptionTypeAdditional information
AccountingCodes

Collection of AccountingCodeDto

None.

Id

integer

None.

AccountId

integer

None.

Description

string

Required

Required

boolean

None.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "AccountingCodes": [
      {
        "Id": 1,
        "Code": "sample string 2",
        "AccountingCodeTypeId": 3,
        "Default": true,
        "Active": true
      },
      {
        "Id": 1,
        "Code": "sample string 2",
        "AccountingCodeTypeId": 3,
        "Default": true,
        "Active": true
      }
    ],
    "Id": 1,
    "AccountId": 2,
    "Description": "sample string 3",
    "Required": true
  },
  {
    "AccountingCodes": [
      {
        "Id": 1,
        "Code": "sample string 2",
        "AccountingCodeTypeId": 3,
        "Default": true,
        "Active": true
      },
      {
        "Id": 1,
        "Code": "sample string 2",
        "AccountingCodeTypeId": 3,
        "Default": true,
        "Active": true
      }
    ],
    "Id": 1,
    "AccountId": 2,
    "Description": "sample string 3",
    "Required": true
  }
]