GET api/DrawersAPI

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Drawer
NameDescriptionTypeAdditional information
Id

integer

None.

Branch_Id

integer

None.

Amount

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Branch_Id": 2,
    "Amount": 3.1
  },
  {
    "Id": 1,
    "Branch_Id": 2,
    "Amount": 3.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfDrawer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ODOAPI.Models">
  <Drawer>
    <Amount>3.1</Amount>
    <Branch_Id>2</Branch_Id>
    <Id>1</Id>
  </Drawer>
  <Drawer>
    <Amount>3.1</Amount>
    <Branch_Id>2</Branch_Id>
    <Id>1</Id>
  </Drawer>
</ArrayOfDrawer>