Activity
In the "Activity" section, an endpoint for retrieving all activities performed by team members in a project is described.
Below is an example of the project activities.
Model
Event
User
Date
Retrieve Project Activities
GET
{{BASE_URL}}/api/projects/{id}/activities
Retrieve a log of all activities performed by team members within a specific project. This allows for tracking and monitoring project progress and interactions.
Headers
Name
Type
Description
Authorization*
String
Bearer Token
[
{
"_id": "6549e448186acd061209bdac",
"virtualMachine": null,
"database": {
"_id": "6549e3b6186acd061209bd2f",
"status": 3,
"name": "kraud-cloud-mongodb-1vcpu-1gb-berlin-01"
},
"app": null,
"k8s": null,
"project": {
"_id": "6548a41f38406c14db33b62c",
"name": "first-project"
},
"event": 1,
"user": {
"_id": "6548a41138406c14db33b606",
"name": "John Doe",
"email": "[email protected]"
},
"createdAt": "2023-11-07T07:16:24.263Z",
"updatedAt": "2023-11-07T07:16:24.263Z"
}
]
Last updated
Was this helpful?