---
title: "List all registrations in a classroom slot"
method: GET
path: "/api/v2/classroom-slots/{classroomSlotId}/registrations"
tags: ["Classrooms"]
---

# List all registrations in a classroom slot

`GET /api/v2/classroom-slots/{classroomSlotId}/registrations`

> 🔑
>
> Required OAuth scope: `classrooms:read`.

> 📖
>
> This endpoint is paginated with a page size of 2,000 slot registrations. For more information, see the [Pagination guide](https://360learning.readme.io/docs/pagination).

Lists all users registered to a given classroom slot.

## Path parameters

- `classroomSlotId` string, ObjectId, required

## Query parameters

- `createdAt` object
  - `lt` string, date-time — Filter on dates lower than the given one
  - `gte` string, date-time — Filter on dates greater than or equal the given one
- `hasAttended` object
  - `eq` boolean — Filter on values equal to the given one
- `modifiedAt` object
  - `lt` string, date-time — Filter on dates lower than the given one
  - `gte` string, date-time — Filter on dates greater than or equal the given one
- `userId` object
  - `eq` string, ObjectId — Filter on values equal to the given one
  - `ne` string, ObjectId — Filter on values not equal to the given one
  - `in` string[] — Filter on values including the given ones
  - `nin` string[] — Filter on values excluding the given ones
- `status` object
  - `eq` 'archived' | 'published' — Filter on values equal to the given one

## Headers

- `360-api-version` 'v2.0', required

## Response `200`

Returns one page of 2000 slot registrations.

- SlotRegistrationDTO[]
  - `_id` string, ObjectId, required — The unique ID of the classroom slot registration.
  - `archivedAt` string, date-time — The date and time when the slot registration was archived from the path session, in the `YYYY-MM-DDThh:mm:ss.sssZ` format (ISO 8601 in Coordinated Universal Time (UTC)).
  - `userId` string, ObjectId, required — The unique ID of the registered user.
  - `attendanceDuration` number — If the classroom is setup through a webinar integration, contains the reported duration of the attendance in milliseconds.
  - `createdAt` string, date-time — The date and time when the slot registration has been created, in the `YYYY-MM-DDThh:mm:ss.sssZ` format (ISO 8601 in Coordinated Universal Time (UTC)).
  - `hasAttended` boolean — The attendance status of the registration.
  - `modifiedAt` string, date-time — The date and time when the slot registration has been modified, in the `YYYY-MM-DDThh:mm:ss.sssZ` format (ISO 8601 in Coordinated Universal Time (UTC)).
  - `pathId` string, ObjectId — The ID of the path in which this registration was made (if any).
  - `rsvp` RsvpDTO
    - `going` boolean, required — The rsvp response for this registration.
    - `lastUpdatedAt` string, date-time, required — The date of rsvp last update for this registration, in the `YYYY-MM-DDThh:mm:ss.sssZ` format (ISO 8601 in Coordinated Universal Time (UTC)).
  - `status` 'archived' | 'published', required — The status of the slot registration.

## Other responses

- `401` — The given access token is either missing, invalid, has expired, or has been revoked.
- `403` — The given access token does not have the required OAuth scope to execute the request.
- `404` — The given `classroomSlotId` does not correspond to any existing classroom slot.
- `429` — The client has sent too many requests in a short amount of time.

---

[API](https://skmtc.dev/360learning/apis/core-api.md) · [All operations](https://skmtc.dev/360learning/apis/core-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/360learning/core-api/revisions/94b691b0b72c/schema)
