Check if you are event staff

GET/events/:eventId/is-staff

Return whether the authenticated user is staff of the event. To obtain the role and its permission list, use GET /manage/events/:eventId/acl instead.

AuthLogin required

Path parameters

eventIdstringrequired

Event ID or slug.

Response

FieldTypeDescription
isStaffbooleanWhether the user is staff.
Request
curl https://api.4s.link/events/EVENT_ID/is-staff \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"isStaff": true
}