curl --request GET \
--url https://api.tensormesh.ai/v1/activities \
--header 'Authorization: Bearer <token>'{
"activities": [
{
"activityId": "<string>",
"actorType": "ACTOR_TYPE_UNSPECIFIED",
"userId": "<string>",
"action": "ACTIVITY_ACTION_UNSPECIFIED",
"resourceType": "<string>",
"resourceId": "<string>",
"description": "<string>",
"metadata": {},
"occurredAt": "2023-11-07T05:31:56Z",
"recordedAt": "2023-11-07T05:31:56Z",
"actorId": "<string>",
"actorDisplay": "<string>"
}
],
"total": 123,
"page": 123,
"size": 123
}Lists activity events with optional filters.
curl --request GET \
--url https://api.tensormesh.ai/v1/activities \
--header 'Authorization: Bearer <token>'{
"activities": [
{
"activityId": "<string>",
"actorType": "ACTOR_TYPE_UNSPECIFIED",
"userId": "<string>",
"action": "ACTIVITY_ACTION_UNSPECIFIED",
"resourceType": "<string>",
"resourceId": "<string>",
"description": "<string>",
"metadata": {},
"occurredAt": "2023-11-07T05:31:56Z",
"recordedAt": "2023-11-07T05:31:56Z",
"actorId": "<string>",
"actorDisplay": "<string>"
}
],
"total": 123,
"page": 123,
"size": 123
}Documentation Index
Fetch the complete documentation index at: https://docs.tensormesh.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication using an access token. Format: Bearer <access_token>
Filter by actor.
Filter by action name.
Filter by resource type.
Filter by resource ID.
Filter start time.
Filter end time.
Page number (1-based).
Page size.
Was this page helpful?