Docs

Get Drive Users

GET /drives/{eventId}/users

GET/drives/{eventId}/users

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.

Returns all users who have access to the event drive. The driveId is your event ID.

Path Parameters

FieldTypeRequiredDescription
driveIdGuidRequiredThe event ID. The drive is scoped to the event.

Example Response

[
  {
    "id": "019700aa-0001-7000-0000-000000000001",
    "name": "Jane Smith"
  }
]

Response Fields

FieldTypeDescription
idGuidThe user's ID.
namestringThe user's display name.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token.
NOT_FOUND404Drive not found.