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

# Get incoming log

> Returns one incoming message log by public ID.



## OpenAPI

````yaml /openapi-app.json get /inboxes/logs/{public_id}
openapi: 3.1.0
info:
  description: Programmatic access to your Sendmux email infrastructure.
  title: Sendmux API
  version: 1.0.0
servers:
  - description: API v1
    url: https://app.sendmux.ai/api/v1
security:
  - bearerAuth: []
paths:
  /inboxes/logs/{public_id}:
    get:
      tags:
        - Inboxes
      summary: Get incoming log
      description: Returns one incoming message log by public ID.
      operationId: managementGetInboxLog
      parameters:
        - in: path
          name: public_id
          required: true
          schema:
            description: Incoming log public ID (ilog_...)
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IncomingLogItemResponse'
          description: Incoming log detail
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: Authentication required
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: Insufficient permissions
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: Not found
      security:
        - bearerAuth: []
components:
  schemas:
    IncomingLogItemResponse:
      allOf:
        - $ref: '#/components/schemas/SuccessEnvelope'
        - properties:
            data:
              $ref: '#/components/schemas/IncomingLogItem'
            meta:
              $ref: '#/components/schemas/ResponseMeta'
          required:
            - data
          type: object
      unevaluatedProperties: false
    ApiError:
      additionalProperties: false
      properties:
        error:
          additionalProperties: false
          properties:
            code:
              description: Machine-readable error code
              enum:
                - invalid_parameter
                - missing_parameter
                - authentication_required
                - insufficient_permissions
                - not_found
                - conflict
                - limit_exceeded
                - idempotency_conflict
                - payload_too_large
                - validation_error
                - rate_limit_exceeded
                - service_unavailable
                - internal_error
              example: invalid_parameter
              type: string
            doc_url:
              description: Link to relevant documentation
              type: string
            errors:
              description: >-
                Accumulated per-field issues for validation errors. Only present
                on 400/422 responses.
              items:
                $ref: '#/components/schemas/ApiErrorDetail'
              type: array
            message:
              description: Human-readable error description
              type: string
            param:
              description: The parameter that caused the error
              type: string
            retryable:
              description: >-
                Whether the caller may safely retry this request. 4xx are
                typically false (except 429); 5xx are typically true.
              example: false
              type: boolean
          required:
            - code
            - message
            - retryable
          type: object
        meta:
          additionalProperties: false
          properties:
            request_id:
              example: req_clxxxxxxxxxxxxxxxxxxxxxxxxx
              type: string
          required:
            - request_id
          type: object
        ok:
          enum:
            - false
          type: boolean
      required:
        - ok
        - error
        - meta
      type: object
    SuccessEnvelope:
      properties:
        meta:
          additionalProperties: {}
          properties: {}
          type: object
        ok:
          enum:
            - true
          type: boolean
      required:
        - ok
        - meta
      type: object
    IncomingLogItem:
      additionalProperties: false
      properties:
        amount:
          description: Billable amount for this message in USD
          type: string
        billing_bucket_start:
          description: ISO 8601 usage bucket start
          type: string
        event_type:
          enum:
            - message.received
            - message.received.spam
          type: string
        from_email:
          type:
            - string
            - 'null'
        id:
          description: Incoming log public ID
          example: ilog_9ed2f2fdbacf38ef05c6a8b9
          type: string
        is_spam:
          type: boolean
        mailbox_email:
          description: Mailbox email address
          type:
            - string
            - 'null'
        mailbox_id:
          description: Mailbox public ID
          type:
            - string
            - 'null'
        message_id:
          description: Message identifier when available
          type:
            - string
            - 'null'
        message_id_kind:
          description: Identifier source when available
          type:
            - string
            - 'null'
        received_at:
          description: ISO 8601 received timestamp
          type: string
        size_bytes:
          type:
            - number
            - 'null'
        subject:
          type:
            - string
            - 'null'
        to_emails:
          items:
            type: string
          type: array
        unit_amount:
          description: Per-message unit amount in USD
          type: string
      required:
        - id
        - mailbox_id
        - mailbox_email
        - event_type
        - message_id
        - message_id_kind
        - from_email
        - to_emails
        - subject
        - size_bytes
        - received_at
        - is_spam
        - billing_bucket_start
        - unit_amount
        - amount
      type: object
    ResponseMeta:
      additionalProperties: false
      properties:
        request_id:
          example: req_clxxxxxxxxxxxxxxxxxxxxxxxxx
          type: string
      required:
        - request_id
      type: object
    ApiErrorDetail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Machine-readable issue code from the validator (e.g. zod issue
            code).
          example: invalid_string
          type: string
        field:
          description: Dot-path of the offending request field.
          example: recipient.email
          type: string
        message:
          description: Human-readable issue description.
          type: string
      required:
        - field
        - code
        - message
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: API Key
      description: >-
        Sendmux API key. Use a root API key for Management API routes, or a
        mailbox credential for Mailbox API routes. Obtain keys from the
        dashboard under API Keys.
      scheme: bearer
      type: http

````