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

# Get the list of debugging logs for a campaign.

> Each event of a campaign is logged.
Events include start, pause, resume, cancel, hitting messaging limit etc.
Should not be visible to user since its technical data.




## OpenAPI

````yaml /openapi/chat-client.yaml get /whatsapp/campaigns/{id}/logs
openapi: 3.0.3
info:
  version: 1.0.0
  title: HealviChat Client API
servers:
  - url: https://{tenant_domain}/third-party/v1
    variables:
      tenant_domain:
        default: your-tenant.onhealvi.com
        description: Your tenant domain
security:
  - bearerAuth: []
paths:
  /whatsapp/campaigns/{id}/logs:
    get:
      tags:
        - whatsapp
      summary: Get the list of debugging logs for a campaign.
      description: >
        Each event of a campaign is logged.

        Events include start, pause, resume, cancel, hitting messaging limit
        etc.

        Should not be visible to user since its technical data.
      parameters:
        - in: path
          name: id
          schema:
            type: integer
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        content:
                          type: string
                        created_at:
                          type: string
                          format: date-time
                          example: '2023-01-01T12:00:00Z'
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````