User 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 all activities
This endpoint returns a list of Activities that impact the current user. This includes activities performed by the current user, activites that affect the current user directly, and activities about projects the current user is a part of. Login/logout activities are not included in this list.
Activities are events that have occurred in the application. We return when they occurred and some additional data about the event.
GET /api/v2/users/me/activity-stream/
Note: this endpoint uses the term 'standard' to reference what we call 'library tasks' elsewhere in the API.
The application, business_unit, project, and standard fields have associated description fields, suffixed with '_desc'. These fields contain a description of the related item, and can be used to filter if the related item has been deleted.
Query Parameters
Query Parameters and Custom Lookups are the same as the global activities endpoint.
GET /api/v2/users/me/activity-stream/ HTTP/1.1
Accept: application/json
Authorization: Token "YOUR SDE ACCESS TOKEN"
HTTP/1.1 200 OK
Content-Type: application/json
{
"date_from": "2024-11-14T11:50:30.872197-05:00",
"date_to": "2025-11-14T11:50:30.872197-05:00",
"next": "http://example.com/api/v2/users/me/activity-stream/?cursor=cD0yMDI1LTExLTEwKzE0JTNBMzElM0EyMS43NjM2NzAlMkIwMCUzQTAw",
"previous": null,
"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"
}]
}
Expand Parameters
See the Expand Parameters section for more details.
| Parameter | Description |
|---|---|
| business_unit | Expand the business unit field of the application |
GET /api/v2/users/me/activity-stream/?expand=business_unit HTTP/1.1
Accept: application/json
Authorization: Token "YOUR SDE ACCESS TOKEN"
HTTP/1.1 200 OK
Content-Type: application/json
{
"date_from": "2024-11-14T11:50:30.872197-05:00",
"date_to": "2025-11-14T11:50:30.872197-05:00",
"next": "http://example.com/api/v2/users/me/activity-stream/?cursor=cD0yMDI1LTExLTEwKzE0JTNBMzElM0EyMS43NjM2NzAlMkIwMCUzQTAw",
"previous": null,
"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"
}]
}
Get a Specific Activity
This endpoint retreives a specific Activity Resource as specified by the activity_id.
GET /api/v2/users/me/activity-stream/{activity_id}/
URL Parameters
| Parameter | Description |
|---|---|
| activity_id | The id of the Activity Resource to retrieve. |
GET /api/v2/users/me/activity-stream/2/ HTTP/1.1
Accept: application/json
Authorization: Token "YOUR SDE ACCESS TOKEN"
HTTP/1.1 200 OK
Content-Type: application/json
{
"id": 2,
"name": "CreatedUserActivity",
"actor": 1,
"text": "*Admin Testerton* created user *Cindy Lou*",
"date": "2025-06-18T16:16:31.477434-04:00",
"data": {
"user": "U5",
"user_desc": "Cindy Lou"
},
"icon": "personAdd",
"log_level": "create"
}