GET api/Cyclist/{id}/actionlogs/{since}

Gets cyclist actionlogs (actions they performed on the app) since a specific date

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

since

provide as yyyymmdd

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ActionLogModel
NameDescriptionTypeAdditional 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": "2025-09-05T16:10:22.1999292+00:00"
  },
  {
    "GID": "sample string 1",
    "UserID": 2,
    "Action": "sample string 3",
    "Notes": "sample string 4",
    "CreatedDate": "2025-09-05T16:10:22.1999292+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>2025-09-05T16:10:22.1999292+00:00</CreatedDate>
    <GID>sample string 1</GID>
    <Notes>sample string 4</Notes>
    <UserID>2</UserID>
  </ActionLogModel>
  <ActionLogModel>
    <Action>sample string 3</Action>
    <CreatedDate>2025-09-05T16:10:22.1999292+00:00</CreatedDate>
    <GID>sample string 1</GID>
    <Notes>sample string 4</Notes>
    <UserID>2</UserID>
  </ActionLogModel>
</ArrayOfActionLogModel>