GET api/users/GetCheckInSectionLog?RowNum={RowNum}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
RowNum

integer

Default value is 5

Body Parameters

None.

Response Information

Resource Description

MessageModelOfListOfLoginSectionLogViewModel
NameDescriptionTypeAdditional information
Status

integer

None.

Success

boolean

None.

Msg

string

None.

Response

Collection of LoginSectionLogViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 200,
  "Success": true,
  "Msg": "sample string 3",
  "Response": [
    {
      "FSectionId": 1,
      "FSectionName": "sample string 1",
      "FOptTime": "2025-12-06 13:37:40"
    },
    {
      "FSectionId": 1,
      "FSectionName": "sample string 1",
      "FOptTime": "2025-12-06 13:37:40"
    }
  ]
}

application/xml, text/xml

Sample:
<MessageModelOfArrayOfLoginSectionLogViewModelKI6_SDWR9 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DY.Entity">
  <Msg>sample string 3</Msg>
  <Response xmlns:d2p1="http://schemas.datacontract.org/2004/07/DY.Entity.ViewModel">
    <d2p1:LoginSectionLogViewModel>
      <d2p1:FOptTime>2025-12-06T13:37:40.4067608+08:00</d2p1:FOptTime>
      <d2p1:FSectionId>1</d2p1:FSectionId>
      <d2p1:FSectionName>sample string 1</d2p1:FSectionName>
    </d2p1:LoginSectionLogViewModel>
    <d2p1:LoginSectionLogViewModel>
      <d2p1:FOptTime>2025-12-06T13:37:40.4067608+08:00</d2p1:FOptTime>
      <d2p1:FSectionId>1</d2p1:FSectionId>
      <d2p1:FSectionName>sample string 1</d2p1:FSectionName>
    </d2p1:LoginSectionLogViewModel>
  </Response>
  <Status>200</Status>
  <Success>true</Success>
</MessageModelOfArrayOfLoginSectionLogViewModelKI6_SDWR9>