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

# List meetings for organization

> Get light metadata for notetaker meetings owned by the organization. Results are paginated using cursor-based pagination. Meetings are sorted by creation date (newest first) for consistent ordering. Use the optional `from` query parameter to specify a meeting ID to start from (inclusive). If omitted, starts from the newest meeting. Use the optional `pageSize` parameter to control how many meetings to return (2-100, default 100). The `hasMore` field indicates if there are additional meetings available. The `total` field shows the total number of meetings in the organization. This endpoint can be used to loop through all meetings and get full meeting details one-by-one using the meeting/{id} endpoint. Authenticate using Bearer token with your Noux API key.



## OpenAPI

````yaml /openapi.json get /api/v1/notetaker/meetings
openapi: 3.0.0
info:
  title: Noux REST API
  version: 1.0.0
  description: This page contains the standard OpenAPI specification for the Noux REST API.
  contact:
    name: Noux Digital Oy
    url: https://nouxdigital.com/
servers:
  - url: https://api.noux.app
    description: Production API
  - url: http://localhost:4000
    description: Local development
security: []
paths:
  /api/v1/notetaker/meetings:
    get:
      tags:
        - Notetaker
      summary: List meetings for organization
      description: >-
        Get light metadata for notetaker meetings owned by the organization.
        Results are paginated using cursor-based pagination. Meetings are sorted
        by creation date (newest first) for consistent ordering. Use the
        optional `from` query parameter to specify a meeting ID to start from
        (inclusive). If omitted, starts from the newest meeting. Use the
        optional `pageSize` parameter to control how many meetings to return
        (2-100, default 100). The `hasMore` field indicates if there are
        additional meetings available. The `total` field shows the total number
        of meetings in the organization. This endpoint can be used to loop
        through all meetings and get full meeting details one-by-one using the
        meeting/{id} endpoint. Authenticate using Bearer token with your Noux
        API key.
      parameters:
        - schema:
            type: string
            description: >-
              Optional meeting ID to start from (inclusive). The specified
              meeting will be included in the results. Must belong to your
              organization.
          required: false
          description: >-
            Optional meeting ID to start from (inclusive). The specified meeting
            will be included in the results. Must belong to your organization.
          name: from
          in: query
        - schema:
            type: string
            pattern: ^\d+$
            description: >-
              Number of meetings per page. Must be between 2 and 100. Default is
              100.
          required: false
          description: >-
            Number of meetings per page. Must be between 2 and 100. Default is
            100.
          name: pageSize
          in: query
        - schema:
            type: string
            description: Bearer token with Noux API key
          required: true
          description: Bearer token with Noux API key
          name: authorization
          in: header
      responses:
        '200':
          description: Meetings list retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  meetings:
                    type: array
                    items:
                      type: object
                      properties:
                        meetingId:
                          type: string
                        meetingName:
                          type: string
                        roomId:
                          type: string
                          nullable: true
                        roomName:
                          type: string
                          nullable: true
                        createdAt:
                          type: string
                          format: date-time
                        updatedAt:
                          type: string
                          format: date-time
                        status:
                          type: string
                        startedAt:
                          type: string
                          nullable: true
                          format: date-time
                        endedAt:
                          type: string
                          nullable: true
                          format: date-time
                        durationSeconds:
                          type: number
                          nullable: true
                        meetingUrl:
                          type: string
                      required:
                        - meetingId
                        - meetingName
                        - roomId
                        - roomName
                        - createdAt
                        - updatedAt
                        - status
                        - startedAt
                        - endedAt
                        - durationSeconds
                        - meetingUrl
                  hasMore:
                    type: boolean
                    description: >-
                      Indicates if there are more meetings available beyond the
                      current page
                  total:
                    type: number
                    description: Total number of meetings in the organization
                  pageSize:
                    type: number
                    description: >-
                      Number of meetings per page (as specified in the request,
                      default 100)
                required:
                  - meetings
                  - hasMore
                  - total
                  - pageSize
        '400':
          description: Bad Request - invalid pageSize or from meeting ID
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: boolean
                    enum:
                      - true
                    description: Indicates this is an error response
                  code:
                    type: string
                    enum:
                      - PARSE_ERROR
                      - BAD_REQUEST
                      - INTERNAL_SERVER_ERROR
                      - NOT_IMPLEMENTED
                      - METHOD_NOT_SUPPORTED
                      - TIMEOUT
                      - CONFLICT
                      - PRECONDITION_FAILED
                      - PAYLOAD_TOO_LARGE
                      - UNPROCESSABLE_CONTENT
                      - TOO_MANY_REQUESTS
                      - CLIENT_CLOSED_REQUEST
                      - INVALID_INPUT
                      - UNAUTHORIZED
                      - NOT_FOUND
                      - FORBIDDEN
                      - INVALID_STATE
                      - SERVER_ERROR
                    description: Error code for programmatic handling
                  message:
                    type: string
                    description: Human-readable error message
                required:
                  - error
                  - code
                  - message
        '401':
          description: Unauthorized - invalid or missing API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: boolean
                    enum:
                      - true
                    description: Indicates this is an error response
                  code:
                    type: string
                    enum:
                      - PARSE_ERROR
                      - BAD_REQUEST
                      - INTERNAL_SERVER_ERROR
                      - NOT_IMPLEMENTED
                      - METHOD_NOT_SUPPORTED
                      - TIMEOUT
                      - CONFLICT
                      - PRECONDITION_FAILED
                      - PAYLOAD_TOO_LARGE
                      - UNPROCESSABLE_CONTENT
                      - TOO_MANY_REQUESTS
                      - CLIENT_CLOSED_REQUEST
                      - INVALID_INPUT
                      - UNAUTHORIZED
                      - NOT_FOUND
                      - FORBIDDEN
                      - INVALID_STATE
                      - SERVER_ERROR
                    description: Error code for programmatic handling
                  message:
                    type: string
                    description: Human-readable error message
                required:
                  - error
                  - code
                  - message
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Noux API key from your integration settings

````