> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scoot.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Event Registration

Retrieves event registration configuration and settings for Scootaverse sessions.


## OpenAPI

````yaml GET /api/v1/event/registration
openapi: 3.0.2
info:
  title: Scoot Customer API - Complete Documentation
  version: 1.0.0
  description: >-
    Complete API documentation for Scoot customer-facing endpoints with full
    type definitions from the backend service.
servers:
  - url: https://api.scoot.app
    description: Production server
security: []
tags:
  - name: Social
    description: Social event management endpoints
  - name: Room
    description: Room management endpoints
  - name: Theme
    description: Theme and background management endpoints
  - name: Event
    description: Event registration and management endpoints
  - name: Recording
    description: Recording and transcription endpoints
  - name: Playlist
    description: Audio playlist management endpoints
  - name: Badging
    description: Badge and gamification endpoints
  - name: User
    description: User management endpoints
paths:
  /api/v1/event/registration:
    get:
      tags:
        - SocialEventController
      summary: GET /api/v1/event/registration
      operationId: get__api_v1_event_registration
      parameters:
        - in: query
          name: socialEventId
          required: true
          schema:
            type: string
            format: uuid
        - in: query
          name: text
          required: false
          schema:
            type: string
        - in: query
          name: page
          required: false
          schema:
            type: integer
            default: 0
          description: Page number to get, used with pageSize
        - in: query
          name: size
          required: false
          schema:
            type: integer
            default: 20
          description: Number of items to get in one request, used with page
        - in: query
          name: sort
          required: false
          schema:
            type: string
          description: >-
            Property to sort by. Append ',' and directions 'asc/desc' to change
            direction
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UserRegistration'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    UserRegistration:
      type: object
      properties:
        registrationId:
          type: string
          format: uuid
        source:
          type: string
        registeredDateTime:
          type: string
          format: date-time
        confirmed:
          type: boolean
        user:
          $ref: '#/components/schemas/User'
        event:
          $ref: '#/components/schemas/SocialEvent'
        values:
          type: array
          items:
            $ref: '#/components/schemas/UserRegistrationValue'
        guestBearer:
          type: string
        refreshBearer:
          type: string
    User:
      type: object
      properties:
        userId:
          type: string
          format: uuid
        name:
          type: string
        firstName:
          type: string
        middleName:
          type: string
        lastName:
          type: string
        emailAddress:
          type: string
        emailVerified:
          type: boolean
        preload:
          type: boolean
        mobilePhone:
          type: string
        mobilePhoneVerified:
          type: boolean
        mobilePhoneVerifiedWeb:
          type: boolean
        profileId:
          type: string
        profileImageURI:
          type: string
        profileImageId:
          type: string
          format: uuid
        profileImageBackground:
          type: string
        timeZone:
          type: string
        registeredDateTime:
          type: string
          format: date-time
        active:
          type: boolean
        actedAs:
          type: boolean
    SocialEvent:
      type: object
      properties:
        socialEventId:
          type: string
          format: uuid
        name:
          type: string
        description:
          type: string
        eventLink:
          type: string
        eventColor:
          type: string
        registrationStatus:
          enum:
            - NOT_CREATED
            - LIVE
            - PAUSED
            - CLOSED
        validateParticipants:
          type: boolean
        startDateTime:
          type: string
          format: date-time
        endDateTime:
          type: string
          format: date-time
        socialRoomSetId:
          type: string
          format: uuid
        logoImageId:
          type: string
          format: uuid
        logoImageURI:
          type: string
        user:
          $ref: '#/components/schemas/User'
    UserRegistrationValue:
      type: object
      properties:
        name:
          type: string
        value:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````