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

# Get calendar meeting by ID

> Retrieve detailed information about a specific calendar meeting including all associated recordings and their processing status.



## OpenAPI

````yaml /api-reference/openapi-v1.json get /v1/calendar-meetings/{id}
openapi: 3.1.0
info:
  title: Stardex API (v1)
  version: 1.0.0
  description: >-
    Stardex ATS API — manage candidates, jobs, companies, and recruiting
    workflows.
servers:
  - url: https://api.stardex.ai
    description: Production API server
security:
  - bearerAuth: []
tags:
  - name: Persons
    description: Manage person records — contacts, work history, and custom fields.
  - name: Jobs
    description: Manage job postings — pipeline stages, team members, and custom fields.
  - name: Candidates
    description: Manage candidate records and pipeline stage transitions.
  - name: Companies
    description: Browse and retrieve company records.
  - name: Lists
    description: Create, search, and retrieve saved person and company lists.
  - name: Person Activities
    description: Create and manage activity records (notes, emails, meetings) for persons.
  - name: Team Members
    description: List team members for use in search filters and assignments.
  - name: Custom Fields
    description: Retrieve custom field definitions and tag options for search filters.
paths:
  /v1/calendar-meetings/{id}:
    get:
      tags:
        - Calendar Meetings
      summary: Get calendar meeting by ID
      description: >-
        Retrieve detailed information about a specific calendar meeting
        including all associated recordings and their processing status.
      operationId: getCalendarMeetingById
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
            description: Calendar meeting UUID
      responses:
        '200':
          description: Calendar meeting fetched
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CalendarMeetingByIdResponse'
              example:
                success: true
                data:
                  id: 6d7e8f90-1234-5678-9012-abcdef012345
                  meeting_title: Weekly Engineering Sync
                  meeting_url: https://meet.google.com/abc-defg-hij
                  meeting_key: abc-defg-hij
                  start_time: '2026-04-07T10:00:00.000Z'
                  bot_status: completed
                  bot_opt_out: false
                  recordings:
                    - id: 5c6d7e8f-9012-3456-7890-abcdef012345
                      processing_status: completed
                      recording_duration_seconds: 3600
                      has_transcript: true
                  created_at: '2026-04-06T18:00:00.000Z'
                  updated_at: '2026-04-07T11:10:00.000Z'
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                    description: Always false for error responses.
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        description: >-
                          Machine-readable error code (e.g. "VALIDATION_ERROR",
                          "NOT_FOUND").
                      message:
                        type: string
                        description: Human-readable error description.
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                    description: Always false for error responses.
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        description: >-
                          Machine-readable error code (e.g. "VALIDATION_ERROR",
                          "NOT_FOUND").
                      message:
                        type: string
                        description: Human-readable error description.
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                    description: Always false for error responses.
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        description: >-
                          Machine-readable error code (e.g. "VALIDATION_ERROR",
                          "NOT_FOUND").
                      message:
                        type: string
                        description: Human-readable error description.
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
components:
  schemas:
    CalendarMeetingByIdResponse:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - true
        data:
          $ref: '#/components/schemas/CalendarMeetingDetail'
      required:
        - success
        - data
    CalendarMeetingDetail:
      type: object
      properties:
        id:
          type: string
          description: Calendar meeting UUID.
        meeting_title:
          type:
            - string
            - 'null'
          description: Meeting title.
        meeting_url:
          type: string
          description: Meeting URL (e.g. Zoom/Google Meet link).
        meeting_key:
          type: string
          description: Unique meeting key.
        start_time:
          type: string
          description: Meeting start time (ISO 8601).
        bot_status:
          type:
            - string
            - 'null'
          description: Current notetaker bot status (e.g. in_call_recording, done).
        bot_opt_out:
          type: boolean
          description: Whether the notetaker bot was opted out for this meeting.
        recordings:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                description: >-
                  Meeting recording UUID. Use GET /v1/meeting-recordings/{id}
                  for full details.
              processing_status:
                type:
                  - string
                  - 'null'
                description: >-
                  Recording processing status: pending, processing, completed,
                  or failed.
              recording_duration_seconds:
                type:
                  - number
                  - 'null'
                description: Duration of the recording in seconds.
              has_transcript:
                type: boolean
                description: >-
                  Whether a transcript is available. Use GET
                  /v1/meeting-recordings/{id} to fetch the full transcript.
            required:
              - id
              - processing_status
              - recording_duration_seconds
              - has_transcript
          description: Recordings associated with this meeting.
        created_at:
          type: string
          description: ISO 8601 creation timestamp.
        updated_at:
          type: string
          description: ISO 8601 last update timestamp.
      required:
        - id
        - meeting_title
        - meeting_url
        - meeting_key
        - start_time
        - bot_status
        - bot_opt_out
        - recordings
        - created_at
        - updated_at
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Authenticate with a Bearer token: API key, OAuth token, or session
        token.

````