Listing all activities of a user account¶
Send a GET request to the endpoint /user/{id}/activities.
Description¶
The List-User-Activities request allows the user to request a list of all activities of a user account of the organisation.
Requirements¶
Values of the request: User-ID {id}d}
Objects: none
Request¶
To request a list of all activities of a user account, add the User-ID {id} to the path of the request.
As a result, you will receive one or more ActivityVO objects containing the requested information.
The object provides the following information:
| Attributes | Description | Values |
|---|---|---|
type |
The type of logged activity. | |
message |
The content of the message that appears for the activity. | string |
title |
The name of the activity. |
|
details |
An array with information (name and versions) about the operating system (os) and the web browser (browser) used. |
|
ip |
The IP address of the client who accessed the Myra App. | integer |
id |
The ID of the entry. | integer |
modified |
The last modification date in ISO 8601 format. | string($date-time) |
created |
The creation date in ISO 8601 format. | string($date-time) |
Example¶
Example response:
[
{
"type": "string",
"message": "string",
"title": true,
"details": "string",
"ip": 0,
"id": 0,
"modified": "2026-01-01T00:00:00+00:00",
"created": "2026-01-01T00:00:00+00:00"
}
]
Responses¶
The following responses are available:
| STATUS CODE | DESCRIPTION |
|---|---|
| 200 | The request has succeeded. |
| 400 | The request was unsuccessful. The request was invalid or information is missing. |
| 401 | The request has not succeeded because the user authentication was incorrect. |
| 403 | The request has not succeeded because the user does not have the right permissions. |