GET api/{area}/User/GetCheckInList?aid={aid}&shopId={shopId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
aid

string

Required

shopId

integer

Required

area

string

None.

Body Parameters

None.

Response Information

Resource Description

CheckInInfo
NameDescriptionTypeAdditional information
CheckInContents

string

None.

CheckInTime

date

None.

CheckInCount

integer

None.

CheckInScore

integer

None.

ison

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "CheckInContents": "sample string 1",
  "CheckInTime": "2025-12-18T12:16:32.8836046+08:00",
  "CheckInCount": 3,
  "CheckInScore": 4,
  "ison": true
}

application/xml, text/xml

Sample:
<UserController.CheckInInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Controllers">
  <CheckInContents>sample string 1</CheckInContents>
  <CheckInCount>3</CheckInCount>
  <CheckInScore>4</CheckInScore>
  <CheckInTime>2025-12-18T12:16:32.8836046+08:00</CheckInTime>
  <ison>true</ison>
</UserController.CheckInInfo>