Docs

Get User

GET /Events/{eventId}/users/{userId}

GET/Events/{eventId}/users/{userId}

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.
Event tokenx-Event-TokenOptionalRun **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

FieldTypeRequiredDescription
eventIdGuidRequiredThe ID of the event.
userIdGuidRequiredThe 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

FieldTypeDescription
idGuidThe user's ID.
firstNamestringUser's first name.
lastNamestringUser's last name.
emailstringUser's email address.
collaboratorIdGuidThe collaborator this user is a crew member of. Empty Guid if not associated.
collaboratorNamestring| nullThe collaborator's display name. Null if not associated.
licenseFeatureFlagsstring[]Feature flags active for this user's license on this event.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token.
NOT_FOUND404User not found on this event.