POST api/SystemApi/AddDrawerLog

Request Information

URI Parameters

None.

Body Parameters

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.

Request Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<DrawerLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlsamanodyPosApi.Models">
  <Balance>6.1</Balance>
  <Date>2025-12-22T13:12:34.8424835-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>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.