> ## 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.

# Deliver a question answer to the user's active chat session

> Deliver the user's answers to the agent's pending question for an in-flight turn. Idempotent via the `idempotency-key` header.



## OpenAPI

````yaml /api-reference/mobilerun-va-chat.yaml post /assistant/chat/question
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:
    post:
      tags:
        - Chat
      summary: Deliver a question answer to the user's active chat session
      description: >-
        Deliver the user's answers to the agent's pending question for an
        in-flight turn. Idempotent via the `idempotency-key` header.
      operationId: chatQuestionReply
      requestBody:
        content:
          application/json:
            schema:
              properties:
                answers:
                  items:
                    items:
                      anyOf:
                        - additionalProperties: false
                          properties:
                            label:
                              minLength: 1
                              type: string
                          required:
                            - label
                          type: object
                        - additionalProperties: false
                          properties:
                            custom:
                              minLength: 1
                              type: string
                          required:
                            - custom
                          type: object
                        - additionalProperties: false
                          properties:
                            custom:
                              minLength: 1
                              type: string
                            label:
                              minLength: 1
                              type: string
                          required:
                            - label
                            - custom
                          type: object
                    minItems: 1
                    type: array
                  minItems: 1
                  type: array
                questionId:
                  minLength: 1
                  type: string
              required:
                - questionId
                - answers
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  ok:
                    enum:
                      - true
                    type: boolean
                required:
                  - ok
                type: object
          description: Answer delivered
        '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, or the question is no longer outstanding
        '413':
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                required:
                  - message
                type: object
          description: Request body exceeds the 256 KB cap for /chat/question
        '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.answerQuestion({
              answers: [[{ label: 'x' }]],
              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.answer_question(
                answers=[[{
                    "label": "x"
                }]],
                question_id="x",
            )
            print(response.ok)
components:
  securitySchemes:
    bearerAuth:
      bearerFormat: Opaque
      description: Bearer token via Authorization header
      scheme: bearer
      type: http

````