Docs

Get Contacts

GET /Events/{eventId}/contacts

GET/Events/{eventId}/contacts

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 all crew members across the event who are designated as a point of contact. Each collaborator (e.g., a production company, a catering vendor) has crew members associated with it — the contacts are the specific individuals within those collaborators who serve as the primary representative or liaison to reach out to.

Path Parameters

FieldTypeRequiredDescription
eventIdGuidRequiredThe ID of the event.

Example Response

[
  {
    "id": "crew-guid-001",
    "collaboratorId": "0197f069-bd91-76c8-bfd0-5e287b932da7",
    "collaboratorName": "Production Co.",
    "firstName": "Jane",
    "lastName": "Smith",
    "title": "Site Manager",
    "email": "jane@productionco.com",
    "phoneNumber": "+1-555-0100"
  },
  {
    "id": "crew-guid-002",
    "collaboratorId": "0197f069-bd91-76c8-bfd0-5e287b932da8",
    "collaboratorName": "Catering Inc.",
    "firstName": "Bob",
    "lastName": "Jones",
    "title": "Operations Lead",
    "email": "bob@cateringinc.com",
    "phoneNumber": "+1-555-0200"
  }
]

Response Fields

FieldTypeDescription
idGuidThe crew member record ID.
collaboratorIdGuidThe ID of the collaborator this contact belongs to.
collaboratorNamestringThe name of the collaborator.
firstNamestringContact's first name.
lastNamestringContact's last name.
titlestringContact's job title.
emailstringContact's email address.
phoneNumberstringContact's phone number.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token.
NOT_FOUND404Event not found.