Docs
Get Event Crew Access
GET /events/{eventId}/crew/access
GET
/events/{eventId}/crew/accessRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <user-token> | Optional | The signed-in user's token. |
| Organization | x-Organization-Token | Optional | The org token for the org that owns the event. Must carry `Organization.*` (org admin). |
Returns the crew on one event within the caller's organization, each with a one-line access summary. Used by the org-level event-centric "Manage permissions" dialog: an org admin opens an event and sees every crew member before drilling into a single member's per-event access. This is the event-centric mirror of Get Crew Events.
Authorized for org admins (Organization.*) of the event's owning org; ownership is enforced by returning crew only for events that belong to the org in the token.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| eventId | Guid | Required | The event id. Replace `{{eventId}}` in the URL. |
Response
Returns an array of the crew on this event within the caller's org. Each item includes:
| Field | Type | Description |
|---|---|---|
| crewId | Guid | The event-scoped crew id — the key used to open the per-event access leaf. |
| firstName | string | First name. |
| lastName | string | Last name. |
| string | Email address. | |
| title | string | Job title. |
| access | object | Per-event access summary for this member. |
| access.licenseId | Guid| null | The member's event license id on this event, or `null`. |
| access.isAdmin | bool | Whether the member holds `Event.*` on this event. |
| access.userId | Guid| null | The member's connected user id, or `null` if not linked. |
| access.permissions | string[] | The connected user's current event permissions (empty when not linked). |