Check if you are event staff
GET
/events/:eventId/is-staffReturn whether the authenticated user is staff of the event. To obtain the role and its permission list, use GET /manage/events/:eventId/acl instead.
| Auth | Login required |
|---|
Path parameters
eventIdstringrequiredEvent ID or slug.
Response
| Field | Type | Description |
|---|---|---|
isStaff | boolean | Whether the user is staff. |
Request
curl https://api.4s.link/events/EVENT_ID/is-staff \-H "Authorization: Bearer 4s_at_..."
Example response
{"isStaff": true}