GET api/DrawerLogsAPI/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of DrawerLog
NameDescriptionTypeAdditional information
Id

integer

None.

Date

date

None.

Drawer_Id

integer

None.

Branch_Id

integer

None.

Amount

decimal number

None.

InOrOut

string

None.

Note

string

None.

User_Id

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Date": "2024-10-04T14:24:13.6506274-07:00",
    "Drawer_Id": 3,
    "Branch_Id": 4,
    "Amount": 5.1,
    "InOrOut": "sample string 6",
    "Note": "sample string 7",
    "User_Id": 8
  },
  {
    "Id": 1,
    "Date": "2024-10-04T14:24:13.6506274-07:00",
    "Drawer_Id": 3,
    "Branch_Id": 4,
    "Amount": 5.1,
    "InOrOut": "sample string 6",
    "Note": "sample string 7",
    "User_Id": 8
  }
]

application/xml, text/xml

Sample:
<ArrayOfDrawerLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ODOAPI.Models">
  <DrawerLog>
    <Amount>5.1</Amount>
    <Branch_Id>4</Branch_Id>
    <Date>2024-10-04T14:24:13.6506274-07:00</Date>
    <Drawer_Id>3</Drawer_Id>
    <Id>1</Id>
    <InOrOut>sample string 6</InOrOut>
    <Note>sample string 7</Note>
    <User_Id>8</User_Id>
  </DrawerLog>
  <DrawerLog>
    <Amount>5.1</Amount>
    <Branch_Id>4</Branch_Id>
    <Date>2024-10-04T14:24:13.6506274-07:00</Date>
    <Drawer_Id>3</Drawer_Id>
    <Id>1</Id>
    <InOrOut>sample string 6</InOrOut>
    <Note>sample string 7</Note>
    <User_Id>8</User_Id>
  </DrawerLog>
</ArrayOfDrawerLog>