GET api/Cyclist/{id}/changelogs/{since}
Gets cyclist change logs (changes 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 ChangeLogModelName | Description | Type | Additional information |
---|---|---|---|
UserID | integer |
None. |
|
EntityType | string |
None. |
|
Property | string |
None. |
|
From | string |
None. |
|
To | string |
None. |
|
EntityID | integer |
None. |
|
CreatedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "UserID": 1, "EntityType": "sample string 2", "Property": "sample string 3", "From": "sample string 4", "To": "sample string 5", "EntityID": 6, "CreatedDate": "2025-09-05T16:10:21.2775404+00:00" }, { "UserID": 1, "EntityType": "sample string 2", "Property": "sample string 3", "From": "sample string 4", "To": "sample string 5", "EntityID": 6, "CreatedDate": "2025-09-05T16:10:21.2775404+00:00" } ]
application/xml, text/xml
Sample:
<ArrayOfChangeLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub.Server.Models.DTO"> <ChangeLogModel> <CreatedDate>2025-09-05T16:10:21.2775404+00:00</CreatedDate> <EntityID>6</EntityID> <EntityType>sample string 2</EntityType> <From>sample string 4</From> <Property>sample string 3</Property> <To>sample string 5</To> <UserID>1</UserID> </ChangeLogModel> <ChangeLogModel> <CreatedDate>2025-09-05T16:10:21.2775404+00:00</CreatedDate> <EntityID>6</EntityID> <EntityType>sample string 2</EntityType> <From>sample string 4</From> <Property>sample string 3</Property> <To>sample string 5</To> <UserID>1</UserID> </ChangeLogModel> </ArrayOfChangeLogModel>