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

# Ingest a meeting from any source

> Ingests a meeting and optional transcript from any source into the Momentum system.



## OpenAPI

````yaml /api/openapi-spec.yaml post /v1/user-provided-meeting
openapi: 3.1.0
info:
  title: Momentum API
  description: >-
    API for managing meetings with attendee and transcript details, and
    retrieving AI signal executions.
  version: 2.0.0
servers:
  - url: https://api.momentum.io
security:
  - ApiKeyAuth: []
tags:
  - name: Meetings
    description: Endpoints for retrieving and managing meetings.
  - name: Users
    description: Endpoints for retrieving organization users.
  - name: Signals V1
    description: AI signal prompts and executions (v1).
  - name: Signals V2
    description: AI signal definitions and executions (v2).
paths:
  /v1/user-provided-meeting:
    servers:
      - url: https://receiver.momentum.io/
    post:
      tags:
        - Meetings
      summary: Ingest a meeting from any source
      description: >-
        Ingests a meeting and optional transcript from any source into the
        Momentum system.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserProvidedMeetingBody'
      responses:
        '200':
          description: Meeting successfully created.
        '400':
          description: Bad request.
        '401':
          description: Unauthorized.
        '413':
          description: Payload too large. The body size should not exceed 5 MB.
        '422':
          description: >-
            Unprocessable entity due to semantic errors, such as invalid
            transcript format or inconsistent meeting details.
        '500':
          description: Internal server error.
components:
  schemas:
    UserProvidedMeetingBody:
      type: object
      additionalProperties: false
      properties:
        meeting:
          $ref: '#/components/schemas/UserProvidedMeeting'
        processImportedMeeting:
          description: |
            Whether to process the imported meeting.
          type: boolean
      required:
        - meeting
        - processImportedMeeting
    UserProvidedMeeting:
      type: object
      additionalProperties: false
      properties:
        id:
          description: |
            Optional external meeting ID from the source system.
          type: string
        title:
          description: |
            Title of the meeting.
          type: string
        callUrl:
          description: |
            URL to join the meeting.
          type: string
          format: uri
        recordingUrl:
          description: |
            URL to the meeting recording.
          type: string
          format: uri
        startTime:
          description: |
            Start time of the meeting.
          type: string
          format: date-time
        endTime:
          description: |
            End time of the meeting.
          type: string
          format: date-time
        host:
          description: |
            Host of the meeting.
          type: object
          properties:
            name:
              description: |
                Name of the host.
              type: string
            email:
              description: |
                Email of the host.
              type: string
              format: email
          required:
            - name
            - email
        attendees:
          description: |
            List of attendees for the meeting.
          type: array
          items:
            $ref: '#/components/schemas/MeetingAttendee'
        salesforceAccountId:
          description: |
            Salesforce Account ID
          type: string
        salesforceOpportunityId:
          description: |
            Salesforce Opportunity ID
          type: string
        transcript:
          $ref: '#/components/schemas/UserProvidedTranscript'
          description: >
            Optional transcript for the meeting. If provided, it should follow
            the specified format.
      required:
        - endTime
        - host
        - startTime
        - title
    MeetingAttendee:
      type: object
      additionalProperties: false
      properties:
        email:
          description: |
            Email address of the attendee.
          type: string
          format: email
        isInternal:
          description: |
            Indicates if the attendee is internal to the organization.
          type: boolean
        name:
          description: |
            Name of the attendee.
          type: string
    UserProvidedTranscript:
      type: object
      additionalProperties: false
      properties:
        segments:
          type: array
          items:
            $ref: '#/components/schemas/UserProvidedTranscriptSegment'
      required:
        - segments
    UserProvidedTranscriptSegment:
      type: object
      additionalProperties: false
      properties:
        speaker:
          type: object
          properties:
            name:
              type: string
        text:
          type: string
        timestampSeconds:
          type: number
          format: float
      required:
        - text
        - timestampSeconds
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key for authenticating requests

````