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

# Dismiss an outstanding question without answering

> Dismiss the agent's pending question. Already-resolved questions return 200 (no-op) so multi-tab dismiss stays idempotent.



## OpenAPI

````yaml /api-reference/mobilerun-va-chat.yaml post /assistant/chat/question/reject
openapi: 3.1.0
info:
  title: Mobilerun VA Chat
  version: v1
servers:
  - description: Droidrun Cloud API
    url: https://api.mobilerun.ai/v1
security:
  - bearerAuth: []
paths:
  /assistant/chat/question/reject:
    post:
      tags:
        - Chat
      summary: Dismiss an outstanding question without answering
      description: >-
        Dismiss the agent's pending question. Already-resolved questions return
        200 (no-op) so multi-tab dismiss stays idempotent.
      operationId: chatQuestionReject
      requestBody:
        content:
          application/json:
            schema:
              properties:
                questionId:
                  minLength: 1
                  type: string
              required:
                - questionId
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  ok:
                    enum:
                      - true
                    type: boolean
                required:
                  - ok
                type: object
          description: Dismiss delivered (or no-op if the question was already resolved)
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '404':
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                required:
                  - message
                type: object
          description: No active chat session for this user
        '500':
          description: Internal Server Error
      x-codeSamples:
        - lang: JavaScript
          source: >-
            import Mobilerun from '@mobilerun/sdk';


            const client = new Mobilerun({
              apiKey: process.env['MOBILERUN_CLOUD_API_KEY'], // This is the default and can be omitted
            });


            const response = await
            client.assistant.conversations.rejectQuestion({ questionId: 'x' });


            console.log(response.ok);
        - lang: Python
          source: |-
            import os
            from mobilerun_sdk import Mobilerun

            client = Mobilerun(
                api_key=os.environ.get("MOBILERUN_CLOUD_API_KEY"),  # This is the default and can be omitted
            )
            response = client.assistant.conversations.reject_question(
                question_id="x",
            )
            print(response.ok)
components:
  securitySchemes:
    bearerAuth:
      bearerFormat: Opaque
      description: Bearer token via Authorization header
      scheme: bearer
      type: http

````