GET api/SystemApi/GetAllUserLogs?start={start}&end={end}&userid={userid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
start

date

Required

end

date

Required

userid

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of UserLog
NameDescriptionTypeAdditional information
Id

integer

None.

User_Id

integer

None.

Date

date

None.

Note

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "User_Id": 2,
    "Date": "2025-12-22T13:02:37.9016756-08:00",
    "Note": "sample string 4"
  },
  {
    "Id": 1,
    "User_Id": 2,
    "Date": "2025-12-22T13:02:37.9016756-08:00",
    "Note": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUserLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlsamanodyPosApi.Models">
  <UserLog>
    <Date>2025-12-22T13:02:37.9016756-08:00</Date>
    <Id>1</Id>
    <Note>sample string 4</Note>
    <User_Id>2</User_Id>
  </UserLog>
  <UserLog>
    <Date>2025-12-22T13:02:37.9016756-08:00</Date>
    <Id>1</Id>
    <Note>sample string 4</Note>
    <User_Id>2</User_Id>
  </UserLog>
</ArrayOfUserLog>