Docs

Get Crew Member

GET /collaborators/{collaboratorId}/crew/{crewId}

GET/collaborators/{collaboratorId}/crew/{crewId}

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.

Returns full detail for a single crew member, including their linked user account and all attribute values with full attribute metadata.

Attributes are filtered based on the caller's permissions: event admins see all attributes regardless of visibility settings. All other callers only see attributes where isCrewVisible is true.

Path Parameters

FieldTypeRequiredDescription
collaboratorIdGuidRequiredThe ID of the collaborator this crew member belongs to.
crewIdGuidRequiredThe ID of the crew member. Replace `{{crewId}}` in the URL.

Response

FieldTypeDescription
idGuidCrew member ID.
firstNamestringFirst name.
lastNamestringLast name.
emailstringEmail address.
phoneNumberstringPhone number.
titlestringJob title.
isPointOfContactboolWhether this person is a primary point of contact.
connectedUserobject| nullLinked user account (`{ id, status, email }`), or `null` if not linked.
attributesAttribute[]Full attribute detail for this crew member.
attributes[].idGuidAttribute definition ID.
attributes[].namestringAttribute display name.
attributes[].typestringData type.
attributes[].optionsstring[]Allowed values for select-type attributes.
attributes[].isRequiredboolWhether required.
attributes[].isCrewEditableboolWhether the crew member can edit this value.
attributes[].isCrewVisibleboolWhether the crew member can see this attribute.
attributes[].valuestringThe current value.