List manageable events

GET/manage/events

List events where the authenticated user is registered as staff.

AuthLogin required

Query parameters

pagenumber

Page number (1-based). Default 1.

perPagenumber

Items per page. Default 20.

Notes

When accessed with an OAuth access token, `email` fields are recursively removed from the response JSON (they are retained for session-authenticated dashboard access).

Response

FieldTypeDescription
eventsEvent[]Array of events (each includes your role)
pageInfoobjectPagination info.
Request
curl https://api.4s.link/manage/events \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"events": [
{ "id": "e1f2a3b4-...", "slug": "tech-conf-2026", "title": "4S Tech Conference 2026", "state": "PUBLISHED", "role": "ADMIN" }
],
"pageInfo": { "totalCount": 100, "totalPages": 5, "page": 1, "perPage": 20 }
}