Docs

Add Collaborator

POST /Events/{eventId}/collaborators

POST/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.

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

FieldTypeRequiredDescription
eventIdGuidRequiredThe ID of the event to add the collaborator to.

Request Body

FieldTypeRequiredDescription
namestringRequiredThe 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

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token.
NOT_FOUND404Event not found.
BAD_REQUEST400Name is empty or invalid.