GET api/SystemApi/GetAllDrawerLogsByDate?start={start}&end={end}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
start

date

Required

end

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of DrawerLog
NameDescriptionTypeAdditional information
Id

integer

None.

Drawer_Id

integer

None.

User_Id

integer

None.

Date

date

None.

Note

string

None.

Balance

decimal number

None.

IsIn

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Drawer_Id": 2,
    "User_Id": 3,
    "Date": "2025-12-22T13:03:44.974354-08:00",
    "Note": "sample string 5",
    "Balance": 6.1,
    "IsIn": true
  },
  {
    "Id": 1,
    "Drawer_Id": 2,
    "User_Id": 3,
    "Date": "2025-12-22T13:03:44.974354-08:00",
    "Note": "sample string 5",
    "Balance": 6.1,
    "IsIn": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfDrawerLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlsamanodyPosApi.Models">
  <DrawerLog>
    <Balance>6.1</Balance>
    <Date>2025-12-22T13:03:44.974354-08:00</Date>
    <Drawer_Id>2</Drawer_Id>
    <Id>1</Id>
    <IsIn>true</IsIn>
    <Note>sample string 5</Note>
    <User_Id>3</User_Id>
  </DrawerLog>
  <DrawerLog>
    <Balance>6.1</Balance>
    <Date>2025-12-22T13:03:44.974354-08:00</Date>
    <Drawer_Id>2</Drawer_Id>
    <Id>1</Id>
    <IsIn>true</IsIn>
    <Note>sample string 5</Note>
    <User_Id>3</User_Id>
  </DrawerLog>
</ArrayOfDrawerLog>