Me activity
GET /me/activity
List my activity (across all my projects)
Authorization
bearer AuthorizationBearer <token>
In: header
Query Parameters
cursor?string
Pagination cursor.
limit?string
Page size (1–50, default 25).
from?string
ISO-8601 lower bound on createdAt.
to?string
ISO-8601 upper bound on createdAt.
projectId?string
Restrict to a single project.
action?string
Comma-separated action verbs (OR).
Response Body
application/json
application/json
curl -X GET "https://api.part3.io/v1/me/activity"{
"data": [
{
"uid": "act_12a34b5c6d",
"action": "IssueDocument",
"type": "RFI",
"title": null,
"documentId": "doc_2a3b4c5d6e",
"documentTitle": "RFI-014 — slab thickness clarification",
"reportId": "rpt_7c8d9e0f1a",
"reportTitle": "Site Review #12 — 2026-04-20",
"projectId": "proj_5f9a3c2e8b",
"projectName": "Maple Heights Tower",
"createdAt": "2026-04-22T09:14:00Z"
}
],
"nextCursor": null,
"hasMore": false
}{
"error": "User record not found"
}