Docs
Get Contacts
GET /Events/{eventId}/contacts
GET
/Events/{eventId}/contactsRequired 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 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
| Field | Type | Required | Description |
|---|---|---|---|
| eventId | Guid | Required | The 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
| Field | Type | Description |
|---|---|---|
| id | Guid | The crew member record ID. |
| collaboratorId | Guid | The ID of the collaborator this contact belongs to. |
| collaboratorName | string | The name of the collaborator. |
| firstName | string | Contact's first name. |
| lastName | string | Contact's last name. |
| title | string | Contact's job title. |
| string | Contact's email address. | |
| phoneNumber | string | Contact's phone number. |
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token. |
NOT_FOUND | 404 | Event not found. |