GET api/SystemApi/GetAllDrawerLogs?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DrawerLog| Name | Description | Type | Additional 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:08:38.4163387-08:00",
"Note": "sample string 5",
"Balance": 6.1,
"IsIn": true
},
{
"Id": 1,
"Drawer_Id": 2,
"User_Id": 3,
"Date": "2025-12-22T13:08:38.4163387-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:08:38.4163387-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:08:38.4163387-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>