Skip to content
TALA
Esc
navigateopen⌘Jpreview

Retrieve the caller's asset activity logs

GET/api/assets/logs
Authorization
AuthorizationBearer token (JWT) · headerrequired
Query parameters
perPagestringrequired
pagestringrequired
qstringrequired
Header parameters
x-organization-idstring
Target organization id. Defaults to the caller's personal organization when omitted.
Responses
200OK
any
401Unauthorized
any
500Internal Server Error
any
Try it
Server
Authorization
Parameters
Request
curl -X GET "http://localhost:8000/api/assets/logs?perPage=string&page=string&q=string" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "message": "Asset logs retrieved successfully",
  "data": [
    {
      "id": "ALk8Rm3x9T",
      "activityType": "CREATED",
      "description": "Asset \"Company Logo\" was created",
      "createdAt": "2026-04-03T14:53:11Z",
      "user": {
        "id": "CRa7Bk9x2Q"
      }
    }
  ]
}