Activity
GET/api/v1/activity returns a fixed-shape payload: recent front sessions (not trashed), recently updated notes, and recently updated members.
Optional query limit (integer 1–50) caps each of the three lists. When omitted, the server default applies (same as the app). Unknown query keys return 400.
Authentication: activity: read.
Get recent activity
Response
200: JSON object with three arrays. Timestamps are Unix milliseconds.
{
"recentFrontSessions": [
{
"id": "uuid",
"memberId": "uuid",
"memberName": "Name",
"startedAt": 1710000000000,
"endedAt": 1710003600000
}
],
"recentNotes": [
{
"id": "uuid",
"title": "Note title",
"contentPreview": "Plain text preview…",
"updatedAt": 1710000000000
}
],
"recentMemberUpdates": [
{ "id": "uuid", "name": "Member", "updatedAt": 1710000000000 }
]
}cURL
curl -sS \
-H "Authorization: Bearer YOUR_TOKEN" \
"https://api.floralitys.com/api/v1/activity?limit=15"Status codes
- 200: JSON payload
- 400: invalid
limitor unknown parameters - 401 / 403: auth / scope
- 503: database not configured
