Docs
Get User
GET /Events/{eventId}/users/{userId}
GET
/Events/{eventId}/users/{userId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Event token | x-Event-Token | Optional | Run **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually. |
Returns details for a specific user on the event, including their profile, the collaborator they belong to, and their license feature flags.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| eventId | Guid | Required | The ID of the event. |
| userId | Guid | Required | The ID of the user to retrieve. |
Example Response
{
"id": "d1e2f3a4-b5c6-7890-d1e2-f3a4b5c67890",
"firstName": "Jane",
"lastName": "Smith",
"email": "jane@productionco.com",
"collaboratorId": "0197f069-bd91-76c8-bfd0-5e287b932da7",
"collaboratorName": "Production Co.",
"licenseFeatureFlags": ["pro", "advancedReporting"]
}
Response Fields
| Field | Type | Description |
|---|---|---|
| id | Guid | The user's ID. |
| firstName | string | User's first name. |
| lastName | string | User's last name. |
| string | User's email address. | |
| collaboratorId | Guid | The collaborator this user is a crew member of. Empty Guid if not associated. |
| collaboratorName | string| null | The collaborator's display name. Null if not associated. |
| licenseFeatureFlags | string[] | Feature flags active for this user's license on this event. |
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token. |
NOT_FOUND | 404 | User not found on this event. |