Last Updated on : 2023-06-21 07:12:57download
Query the list of users' sign-in history on pages. Enter the meeting reservation ID, the number of items per page (default value: 20
), and page number (default value: 1
).
GET: /v2.0/iot-03/meeting-reservations/{reservation_id}/sign-records
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
reservation_id | String | uri | true | The reservation ID. |
req | MeetingReservationSignRecordQueryReq | false |
Description of req
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
type | String | false | Indicates the sign-in type. Valid values: signIn : sign-in. signOut : sign-out. | |
page_no | Integer | false | The page number. Default value: 1 , which means the first page. | |
page_size | Integer | false | The number of items returned on each page. Default value: 20 . |
Parameter name | Type | Description |
---|---|---|
result | Page |
Description of result
Parameter name | Type | Description |
---|---|---|
total | Long | The total number of items. |
list | List | |
has_more | Boolean | Specifies whether to return the next page. |
Description of list
Parameter name | Type | Description |
---|---|---|
reservation_id | String | The reservation ID. |
uid | String | The user ID. |
type | String | The sign-in type. |
sign_time | Long | The sign-in time. |
GET: /v2.0/iot-03/meeting-reservations/1410076676288679969/sign-records?type=signIn&pageNo=1&pageSize=10
{
"result": {
"list": [
{
"type": "signIn",
"sign_time": 1625557596613,
"reservation_id": "1412316611913711680",
"uid": "1"
}
],
"total": 1,
"has_more": false
},
"t": 1625557601962,
"success": true
}
For more information, see error code.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback