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.

ModelEventUserDate

first-project

created

test@test.com

DD.MM.YYYY

virtual machine

created

dev@test.com

DD.MM.YYYY

virtual machine

deleted

prod@test.com

DD.MM.YYYY

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

NameTypeDescription

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": "john.doe@mail.com"
        },
        "createdAt": "2023-11-07T07:16:24.263Z",
        "updatedAt": "2023-11-07T07:16:24.263Z"
    }
]

Last updated