Docs
Get Collaborators
GET /Events/{eventId}/collaborators
GET
/Events/{eventId}/collaboratorsRequired 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 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
| Field | Type | Required | Description |
|---|---|---|---|
| eventId | Guid | Required | The 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
| Field | Type | Description |
|---|---|---|
| id | Guid | The collaborator's unique ID. |
| name | string | The collaborator's display name. |
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token. |
NOT_FOUND | 404 | Event not found. |