Project Activity Stream (New)
Cursor Pagination
Alternate pagination is available for this specific endpoint where large volumes for records are available. Further information can be found here: See Cursor Pagination
Get Activities associated with a Project
This endpoint returns a list of Activities associated with a Project. Activities are events that have occurred in the application. We return the date they occurred along with additional data.
GET /api/v2/projects/{id}/activity-stream/
URL Parameters
Parameter | Description |
---|---|
id | The id of the Project whose activities are retrieved. |
Query Parameters and Custom Lookups are the same as the global activities endpoint.
GET /api/v2/projects/{id}/activity-stream/ HTTP/1.1
Accept: application/json
Authorization: Token "YOUR SDE ACCESS TOKEN"
HTTP/1.1 200 OK
Content-Type: application/json
{
"results": [{
"id": 342,
"name": "AddedUserToProjectActivity",
"actor": 1,
"text": "*Admin Testerton* added *Cindy Lou* to project [Project 1](/activity-redirect/32/1/ \"Project 1\") in application [Application 1](/activity-redirect/29/1/ \"Application 1\")",
"date": "2025-06-19T12:06:39.264688-04:00",
"data": {
"user": "U5",
"project": 1,
"user_desc": "Cindy Lou",
"application": 1,
"project_desc": "Project 1",
"business_unit": 1,
"application_desc": "Application 1",
"business_unit_desc": "Business Unit 1"
},
"icon": "personAdd",
"log_level": "user"
},
{
"id": 341,
"name": "CreatedTaskActivity",
"actor": 1,
"text": "*Admin Testerton* created [PT1: PS Countermeasure](/activity-redirect/38/321/ \"PT1: PS Countermeasure\") in project [Project 1](/activity-redirect/32/1/ \"Project 1\")",
"date": "2025-06-19T12:05:19.559091-04:00",
"data": {
"task": "1-PT1",
"project": 1,
"standard": "PT1",
"task_desc": "PT1: PS Countermeasure",
"application": 1,
"project_desc": "Project 1",
"business_unit": 1,
"standard_desc": "PT1: PS Countermeasure",
"application_desc": "Application 1",
"business_unit_desc": "Business Unit 1"
},
"icon": "createTask",
"log_level": "create"
},
{
"id": 339,
"name": "ChangedProjectAnswerSurveyActivity",
"actor": 1,
"text": "*Admin Testerton* modified (22 answers) of the survey in project [Project 1](/activity-redirect/32/1/ \"Project 1\") within application [Application 1](/activity-redirect/29/1/ \"Application 1\")",
"date": "2025-06-19T11:56:44.696021-04:00",
"data": {
"project": 1,
"application": 1,
"project_desc": "Project 1",
"answers_count": 22,
"business_unit": 1,
"application_desc": "Application 1",
"business_unit_desc": "Business Unit 1"
},
"icon": "modify",
"log_level": "modify"
}]
}