GET api/Cyclist/{id}/actionlogs/{since}
Gets cyclist actionlogs (actions they performed on the app) since a specific date
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| since |
provide as yyyymmdd |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ActionLogModel| Name | Description | Type | Additional information |
|---|---|---|---|
| GID | string |
None. |
|
| UserID | integer |
None. |
|
| Action | string |
None. |
|
| Notes | string |
None. |
|
| CreatedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"GID": "sample string 1",
"UserID": 2,
"Action": "sample string 3",
"Notes": "sample string 4",
"CreatedDate": "2026-03-21T11:27:28.0135592+00:00"
},
{
"GID": "sample string 1",
"UserID": 2,
"Action": "sample string 3",
"Notes": "sample string 4",
"CreatedDate": "2026-03-21T11:27:28.0135592+00:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfActionLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub.Server.Models.DTO">
<ActionLogModel>
<Action>sample string 3</Action>
<CreatedDate>2026-03-21T11:27:28.0135592+00:00</CreatedDate>
<GID>sample string 1</GID>
<Notes>sample string 4</Notes>
<UserID>2</UserID>
</ActionLogModel>
<ActionLogModel>
<Action>sample string 3</Action>
<CreatedDate>2026-03-21T11:27:28.0135592+00:00</CreatedDate>
<GID>sample string 1</GID>
<Notes>sample string 4</Notes>
<UserID>2</UserID>
</ActionLogModel>
</ArrayOfActionLogModel>