POST api/v{version}/Log/ClientActivity
Accepts log of client actions. Does not validate client data or perform any processing.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
None. |
Body Parameters
Collection of ClientActivityLogModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Timestamp |
Timestamp of action on client. |
date |
Required |
| StudyId |
Id of the study to which this action applies. |
globally unique identifier |
Required |
| UserName |
Username of the user that performed the action. |
string |
Required |
| Content |
JSON data. |
Object |
Required |
Request Formats
application/json, text/json
Sample:
[
{
"timestamp": "2026-07-12T09:59:12.9533688-05:00",
"studyId": "4247f189-5b3f-4df7-9672-eb6f3c83e30a",
"userName": "sample string 3",
"content": {}
},
{
"timestamp": "2026-07-12T09:59:12.9533688-05:00",
"studyId": "4247f189-5b3f-4df7-9672-eb6f3c83e30a",
"userName": "sample string 3",
"content": {}
}
]
Response Information
Resource Description
None.