Docs

Get Collaborators

GET /Events/{eventId}/collaborators

GET/Events/{eventId}/collaborators

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 a list of all collaborators on the event. Collaborators represent the distinct groups or companies working on an event (e.g., a production company, a catering vendor, a security team). Each collaborator has its own crew, advance, and area permissions.

Path Parameters

FieldTypeRequiredDescription
eventIdGuidRequiredThe ID of the event.

Example Response

[
  {
    "id": "0197f069-bd91-76c8-bfd0-5e287b932da7",
    "name": "Production Co."
  },
  {
    "id": "0197f069-bd91-76c8-bfd0-5e287b932da8",
    "name": "Catering Inc."
  }
]

Response Fields

FieldTypeDescription
idGuidThe collaborator's unique ID.
namestringThe collaborator's display name.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token.
NOT_FOUND404Event not found.