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

# Get message delivery logs

> Retrieve delivery logs for a specific message



## OpenAPI

````yaml GET /messages/{id}/logs
openapi: 3.0.3
info:
  title: NativeMessage API
  version: 1.0.0
  description: Complete API documentation for NativeMessage platform
  contact:
    name: NativeMessage Support
    email: support@nativemessage.com
servers:
  - url: https://api-message.nativehub.live/api/v1
    description: Production server
security:
  - BearerAuth: []
  - ApiKeyAuth: []
paths:
  /messages/{id}/logs:
    get:
      tags:
        - Messages
      summary: Get message delivery logs
      description: Retrieve delivery logs for a specific message
      operationId: getMessageLogs
      parameters:
        - name: id
          in: path
          required: true
          description: Message ID
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Delivery logs retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeliveryLog'
        '404':
          description: Message not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    DeliveryLog:
      type: object
      properties:
        id:
          type: string
          format: uuid
        message_id:
          type: string
          format: uuid
        connection_id:
          type: string
          format: uuid
        provider_id:
          type: string
          format: uuid
        status:
          type: string
        detail:
          type: object
        error_message:
          type: string
        created_at:
          type: string
          format: date-time
      example:
        id: a7b8c9d0-e1f2-3456-ab78-901234567890
        message_id: d4e5f6a7-b8c9-0123-def4-567890123456
        connection_id: f6a7b8c9-d0e1-2345-fa67-890123456789
        provider_id: b8c9d0e1-f2a3-4567-bc89-012345678901
        status: delivered
        detail:
          dlr_status: DELIVRD
          network_code: '47001'
        created_at: '2026-02-14T10:15:32Z'
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
      example:
        error: Invalid request parameters
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````