Docs
Add Collaborator
POST /Events/{eventId}/collaborators
POST
/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. |
Creates a new collaborator on the event. The calling user is automatically granted CollaboratorAdmin permission over the new collaborator.
Requires EventAdmin permission on the event.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| eventId | Guid | Required | The ID of the event to add the collaborator to. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | Required | The display name of the collaborator (e.g., company or team name). Must not be empty. |
Example Request
{
"name": "Catering Inc."
}
Response
201 Created — No response body.
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token. |
NOT_FOUND | 404 | Event not found. |
BAD_REQUEST | 400 | Name is empty or invalid. |