List event staff
GET
/manage/events/:eventId/staffList the event's staff. Requires the staffRead permission.
| Auth | Login required |
|---|
Path parameters
eventIdstringrequiredEvent ID or slug.
Query parameters
pagenumberPage number (1-based). Default 1.
perPagenumberItems per page. Default 20.
rolestringOne of ADMIN / EDITOR / COORDINATOR / RECEPTIONIST (required).
userNamestringPartial 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
| Field | Type | Description |
|---|---|---|
staff | EventStaff[] | Array of staff. |
pageInfo | object | Pagination 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 }}