List event staff

GET/manage/events/:eventId/staff

List the event's staff. Requires the staffRead permission.

AuthLogin required

Path parameters

eventIdstringrequired

Event ID or slug.

Query parameters

pagenumber

Page number (1-based). Default 1.

perPagenumber

Items per page. Default 20.

rolestring

One of ADMIN / EDITOR / COORDINATOR / RECEPTIONIST (required).

userNamestring

Partial match on name, slug or email (AND by whitespace)

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
staffEventStaff[]Array of staff.
pageInfoobjectPagination info.
Request
curl https://api.4s.link/manage/events/EVENT_ID/staff \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"staff": [
{
"id": "st1a2b3-...",
"role": "EDITOR",
"user": { "id": "a1b2c3d4-...", "slug": "taro", "firstName": "太郎", "lastName": "山田", "avatarUrl": "https://.../avatar.png" },
"createdAt": "2026-08-18T00:00:00.000Z"
}
],
"pageInfo": { "totalCount": 100, "totalPages": 5, "page": 1, "perPage": 20 }
}