GET api/QueryAPi/GetDrawerSubAccounts?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of DrawerSubAccount
NameDescriptionTypeAdditional information
Id

integer

None.

Drawer_Id

integer

None.

Name

string

None.

Amount

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Drawer_Id": 2,
    "Name": "sample string 3",
    "Amount": 4.1
  },
  {
    "Id": 1,
    "Drawer_Id": 2,
    "Name": "sample string 3",
    "Amount": 4.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfDrawerSubAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ODOAPI.Models">
  <DrawerSubAccount>
    <Amount>4.1</Amount>
    <Drawer_Id>2</Drawer_Id>
    <Id>1</Id>
    <Name>sample string 3</Name>
  </DrawerSubAccount>
  <DrawerSubAccount>
    <Amount>4.1</Amount>
    <Drawer_Id>2</Drawer_Id>
    <Id>1</Id>
    <Name>sample string 3</Name>
  </DrawerSubAccount>
</ArrayOfDrawerSubAccount>