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

# subscribeToInCallPrompts

> Calls a query at the path prompts/queries.js:subscribeToInCallPrompts



## OpenAPI

````yaml api-reference/convex-openapi.yaml post /api/run/prompts/queries/subscribeToInCallPrompts
openapi: 3.0.3
info:
  title: Connvo Convex API
  version: 1.0.0
  description: >-
    HTTP interface for Connvo's Convex backend, exposing vetted query, mutation,
    and action endpoints.
servers:
  - url: https://Connvo-dev.convex.cloud
    description: Dev Convex deployment
  - url: https://Connvo-staging.convex.cloud
    description: Staging Convex deployment
  - url: https://Connvo-prod.convex.cloud
    description: Prod Convex deployment
security:
  - bearerAuth: []
tags:
  - name: Users
    description: Identity, profile, and authentication operations for Connvo users.
  - name: Meetings
    description: Scheduling, managing, and retrieving meeting data.
  - name: Transcripts
    description: Endpoints for accessing call transcripts and transcription controls.
  - name: Insights
    description: AI-generated insights, summaries, and analytics derived from meetings.
  - name: Prompts
    description: Prompt management and AI conversation guidance.
  - name: Notes
    description: Collaborative meeting notes and follow-up documentation.
  - name: WebRTC
    description: Real-time communication, session signalling, and media utilities.
  - name: System
    description: General system endpoints such as health checks and diagnostics.
paths:
  /api/run/prompts/queries/subscribeToInCallPrompts:
    post:
      tags:
        - Prompts
      summary: subscribeToInCallPrompts
      description: Calls a query at the path prompts/queries.js:subscribeToInCallPrompts
      operationId: postApiRunPromptsQueriesSubscribeToInCallPrompts
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Request_prompts.queries.subscribeToInCallPrompts
            example:
              args:
                meetingId: me_82f8c0a8bce1a2d5f4e7b6c9
        required: true
      responses:
        '200':
          description: Convex executed your request and returned a result
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Response_prompts.queries.subscribeToInCallPrompts
              example:
                status: success
                errorMessage: ''
                errorData: {}
                value:
                  prompts:
                    - _id: prompts_ck9hx3g1v0010
                      content: What's your take on what we just discussed?
                      tags:
                        - lull
                        - moderate
                        - reflection
                      relevance: 0.8
                      createdAt: 1714066830000
                    - _id: prompts_ck9hx3g1v0009
                      content: >-
                        Since you both work with ai-ml, what trends are you
                        seeing in that space?
                      tags:
                        - interests
                        - trends
                      relevance: 0.8
                      usedAt: 1714066825000
                      feedback: used
                      createdAt: 1714066805000
                  lastUpdated: 1714066835000
        '400':
          description: Failed operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FailedResponse'
        '500':
          description: Convex Internal Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FailedResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    Request_prompts.queries.subscribeToInCallPrompts:
      type: object
      required:
        - args
      properties:
        args:
          type: object
          required:
            - meetingId
          properties:
            meetingId:
              type: string
              description: ID from table "meetings"
    Response_prompts.queries.subscribeToInCallPrompts:
      type: object
      required:
        - status
      properties:
        status:
          type: string
          enum:
            - success
            - error
        errorMessage:
          type: string
        errorData:
          type: object
        value:
          type: object
          required:
            - lastUpdated
            - prompts
          properties:
            lastUpdated:
              type: number
            prompts:
              type: array
              items:
                type: object
                required:
                  - _id
                  - content
                  - createdAt
                  - relevance
                  - tags
                properties:
                  _id:
                    type: string
                    description: ID from table "prompts"
                  content:
                    type: string
                  createdAt:
                    type: number
                  feedback:
                    oneOf:
                      - type: string
                        enum:
                          - used
                      - type: string
                        enum:
                          - dismissed
                      - type: string
                        enum:
                          - upvoted
                  relevance:
                    type: number
                  tags:
                    type: array
                    items:
                      type: string
                  usedAt:
                    type: number
    FailedResponse:
      type: object
      properties: {}
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Standard user authentication token issued via WorkOS. Provide as
        `Authorization: Bearer <user-token>`.

````