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

# Reply To Conversation

> Queue an outbound reply (text or media) on the conversation thread.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/conversations/{conversation_id}/reply
openapi: 3.1.0
info:
  title: wazzapi Public API
  description: >-
    Public API surface for external API-key clients. Only stable /api/v1
    endpoints are included.


    ## Webhook deliveries

    This reference also includes the webhook requests Wazzapi sends to your
    endpoint for incoming messages, message status updates, and device status
    changes. See the `Incoming webhooks` section in the sidebar for headers,
    payload fields, and concrete examples.
  version: 1.0.0
servers: []
security: []
tags:
  - name: Incoming webhooks
    description: >-
      POST deliveries that Wazzapi sends to your webhook endpoint after you
      subscribe to supported events. Verify the signature against the raw body
      and return a 2xx response quickly.
paths:
  /api/v1/conversations/{conversation_id}/reply:
    post:
      tags:
        - conversations
      summary: Reply To Conversation
      description: Queue an outbound reply (text or media) on the conversation thread.
      operationId: reply_to_conversation_api_v1_conversations__conversation_id__reply_post
      parameters:
        - name: conversation_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Conversation Id
        - name: Authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConversationReplyRequest'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConversationReplyResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ConversationReplyRequest:
      properties:
        content:
          anyOf:
            - type: string
              maxLength: 4096
            - type: 'null'
          title: Content
          description: Text body or caption. Optional when media is provided.
        caption:
          anyOf:
            - type: string
              maxLength: 1024
            - type: 'null'
          title: Caption
          description: Optional caption for media messages.
        message_type:
          type: string
          title: Message Type
          description: text, image, video, voice, or document
          default: text
        media_url:
          anyOf:
            - type: string
              maxLength: 2048
            - type: 'null'
          title: Media Url
          description: Public URL for media. Ignored when media_base64 is set.
        media_base64:
          anyOf:
            - type: string
            - type: 'null'
          title: Media Base64
          description: Raw base64 or data URI for inline media upload.
        media_type:
          anyOf:
            - type: string
              maxLength: 50
            - type: 'null'
          title: Media Type
          description: Optional media category hint (image, video, audio, document).
        filename:
          anyOf:
            - type: string
              maxLength: 255
            - type: 'null'
          title: Filename
        mimetype:
          anyOf:
            - type: string
              maxLength: 127
            - type: 'null'
          title: Mimetype
        whatsapp_account_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Whatsapp Account Id
      type: object
      title: ConversationReplyRequest
      description: Reply on a conversation thread (text and/or media).
    ConversationReplyResponse:
      properties:
        success:
          type: boolean
          title: Success
        message_id:
          type: string
          format: uuid
          title: Message Id
        conversation_id:
          type: string
          format: uuid
          title: Conversation Id
        status:
          type: string
          title: Status
        message_type:
          type: string
          title: Message Type
          default: text
      type: object
      required:
        - success
        - message_id
        - conversation_id
        - status
      title: ConversationReplyResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````