---
title: "List active event collaborators with cursor-based pagination"
method: GET
path: "/events/{eventId}/collaborators"
tags: ["Event Collaborators"]
---

# List active event collaborators with cursor-based pagination

`GET /events/{eventId}/collaborators`

Returns active event collaborations for a specific event with cursor pagination. Only shows accepted collaborators. For pending invitations, use the invite endpoints.

## Path parameters

- `eventId` string, required — Event ID to list collaborators for

## Query parameters

- `accessPromoterId` string — DEPRECATED: Use 'promoterId' instead. Filter by collaborating promoter ID (what events can this promoter access). Maintained for backward compatibility.
- `ownerPromoterId` string — DEPRECATED: No longer used. Maintained for backward compatibility only.
- `limit` integer — Maximum number of event collaborators to return per request (1-100, default: 20)
- `cursor` string — Pagination cursor from previous response. Used to fetch next page of results

## Response `200`

OK

- object
  - `grants` object[], required — Array of grants for the current result set
    - `id` string, required — Unique identifier for the event collaborator
    - `createdAt` string, date-time, required — Timestamp in ISO 8601 format when the collaborator was added
    - `updatedAt` string, date-time, required — Timestamp in ISO 8601 format when the collaborator was last updated
    - `eventId` string, required — Event this collaboration applies to
    - `promoterId` string, required — Promoter collaborating on the event
    - `acceptedBy` string, required — User ID who accepted the invitation to collaborate
    - `promoter` object — Populated promoter details. Only included when explicitly requested.
      - `id` string, required — Unique identifier of the promoter
      - `name` string, required — Name of the promoter
      - `teamId` string, required — Team ID of the promoter
    - `permissions` string[], required — Permissions granted to this collaborator. User must have permission in BOTH this grant AND their team membership (intersection).
    - `tenantId` string, required — Tenant ID for multi-tenant isolation
  - `before` string, nullable — Cursor for navigating backward in the result set. Omitted when there are no prior results.
  - `after` string, nullable — Cursor for navigating forward in the result set. Omitted when there are no subsequent results.
  - `limit` number, required — Maximum number of items to return in each result set

## Other responses

- `400` — 400
- `401` — 401
- `403` — 403
- `404` — 404
- `409` — 409
- `412` — 412
- `422` — 422
- `429` — 429
- `500` — 500
- `501` — 501
- `503` — 503

---

[API](https://skmtc.net/session/apis/session-services-api.md) · [All operations](https://skmtc.net/session/apis/session-services-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/session/session-services-api/versions/a1bb6f6c8a2e/schema)
