POST api/Cyclist/WriteActionLog
Request Information
URI Parameters
None.
Body Parameters
ActionLogModel| Name | Description | Type | Additional information |
|---|---|---|---|
| GID | string |
None. |
|
| UserID | integer |
None. |
|
| Action | string |
None. |
|
| Notes | string |
None. |
|
| CreatedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"GID": "sample string 1",
"UserID": 2,
"Action": "sample string 3",
"Notes": "sample string 4",
"CreatedDate": "2026-03-21T11:25:27.8026319+00:00"
}
application/xml, text/xml
Sample:
<ActionLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub.Server.Models.DTO"> <Action>sample string 3</Action> <CreatedDate>2026-03-21T11:25:27.8026319+00:00</CreatedDate> <GID>sample string 1</GID> <Notes>sample string 4</Notes> <UserID>2</UserID> </ActionLogModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>