Document activity list
GET /admin/documents/{documentId}/activity
List the activity history for one document, with optional email delivery details for each activity entry
Authorization
bearer AuthorizationBearer <token>
In: header
Path Parameters
documentId*string
Document UID
Query Parameters
cursor?string
Pagination cursor
limit?string
Page size (1-50, default 25)
includeEmails?string
Include email delivery details for each activity entry (default: false)
Value in
"true" | "false"Response Body
application/json
application/json
application/json
curl -X GET "https://api.part3.io/v1/admin/documents/string/activity"{
"data": [
{
"uid": "act_12a34b5c6d",
"documentId": "doc_2a3b4c5d6e",
"actor": {
"uid": "user_99a8b7c6d5",
"name": "Anika Patel",
"email": "anika@example.com"
},
"action": "status_changed",
"title": "Status changed from pending to with-consultants",
"createdAt": "2026-04-22T09:14:00Z"
},
{
"uid": "act_98f76e5d4c",
"documentId": "doc_2a3b4c5d6e",
"actor": {
"uid": "user_99a8b7c6d5",
"name": "Anika Patel",
"email": "anika@example.com"
},
"action": "comment_added",
"title": "Comment added",
"createdAt": "2026-04-21T17:22:00Z"
}
],
"nextCursor": null,
"hasMore": false
}{
"error": "Insufficient permissions"
}{
"error": "Insufficient permissions"
}