GET api/mycheckingroups?rows={rows}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| rows | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
Collection of MyCheckinsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SRC_GRP_ID | integer |
None. |
|
| GRP_ID | integer |
None. |
|
| GRP_NM | string |
None. |
|
| DUE_TIME | string |
None. |
|
| FIRST_QUESTION | string |
None. |
|
| DATE | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SRC_GRP_ID": 1,
"GRP_ID": 2,
"GRP_NM": "sample string 3",
"DUE_TIME": "sample string 4",
"FIRST_QUESTION": "sample string 5",
"DATE": "2026-01-09T13:55:36.726978+00:00"
},
{
"SRC_GRP_ID": 1,
"GRP_ID": 2,
"GRP_NM": "sample string 3",
"DUE_TIME": "sample string 4",
"FIRST_QUESTION": "sample string 5",
"DATE": "2026-01-09T13:55:36.726978+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfMyCheckinsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.CheckinModels">
<MyCheckinsModel>
<DATE>2026-01-09T13:55:36.726978+00:00</DATE>
<DUE_TIME>sample string 4</DUE_TIME>
<FIRST_QUESTION>sample string 5</FIRST_QUESTION>
<GRP_ID>2</GRP_ID>
<GRP_NM>sample string 3</GRP_NM>
<SRC_GRP_ID>1</SRC_GRP_ID>
</MyCheckinsModel>
<MyCheckinsModel>
<DATE>2026-01-09T13:55:36.726978+00:00</DATE>
<DUE_TIME>sample string 4</DUE_TIME>
<FIRST_QUESTION>sample string 5</FIRST_QUESTION>
<GRP_ID>2</GRP_ID>
<GRP_NM>sample string 3</GRP_NM>
<SRC_GRP_ID>1</SRC_GRP_ID>
</MyCheckinsModel>
</ArrayOfMyCheckinsModel>