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

# Get message status

> Fetch one message by its internal id (returned at send time): delivery status, derived error, and the paired inbound reply if any. The poll alternative to status webhooks.



## OpenAPI

````yaml /openapi.json get /v1/whatsapp/messages/{message_id}
openapi: 3.1.0
info:
  title: Briq API
  description: Karibu Briq API Documentation
  version: '0.8'
servers:
  - url: https://karibu.briq.tz
    description: Production
  - url: https://pre-release.karibu.briq.tz
    description: Pre-release
  - url: http://karibu.briq.tz
    description: LocalPass
security: []
paths:
  /v1/whatsapp/messages/{message_id}:
    get:
      tags:
        - Karibu-Whatsapp-Messages
      summary: Get message status
      description: >-
        Fetch one message by its internal id (returned at send time): delivery
        status, derived error, and the paired inbound reply if any. The poll
        alternative to status webhooks.
      operationId: wa_get_message
      parameters:
        - name: message_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    $ref: '#/components/schemas/WaMessageDetail'
                  errors:
                    type: array
                    nullable: true
                    items:
                      $ref: '#/components/schemas/WaApiError'
                  request_id:
                    type: string
        '403':
          description: API key is not linked to a workspace (WORKSPACE_REQUIRED).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WaErrorEnvelope'
        '404':
          description: Message not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WaErrorEnvelope'
components:
  schemas:
    WaMessageDetail:
      type: object
      properties:
        id:
          type: string
          format: uuid
        conversation_id:
          type: string
          format: uuid
          nullable: true
        message_type:
          type: string
          example: template
        direction:
          type: string
          enum:
            - inbound
            - outbound
        status:
          type: string
          enum:
            - pending
            - queued
            - sent
            - delivered
            - read
            - failed
        provider_message_id:
          type: string
          nullable: true
        content:
          type: object
          additionalProperties: true
        error:
          allOf:
            - $ref: '#/components/schemas/WaMessageError'
          nullable: true
        reply:
          allOf:
            - $ref: '#/components/schemas/WaMessageReply'
          nullable: true
        created_at:
          type: string
          format: date-time
    WaApiError:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        field:
          type: string
          nullable: true
    WaErrorEnvelope:
      type: object
      properties:
        success:
          type: boolean
          example: false
        data:
          type: object
          nullable: true
          description: >-
            On a failed send that still produced a record, carries the pollable
            message_id with status='failed'; otherwise null.
        errors:
          type: array
          items:
            $ref: '#/components/schemas/WaApiError'
        request_id:
          type: string
    WaMessageError:
      type: object
      properties:
        code:
          type: string
          nullable: true
        message:
          type: string
          nullable: true
    WaMessageReply:
      type: object
      properties:
        message_id:
          type: string
          format: uuid
        type:
          type: string
        received_at:
          type: string
          format: date-time

````