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

# Get all logs

> Use this endpoint to get all logs of sent messages



## OpenAPI

````yaml swagger GET /log
openapi: 3.0.0
info:
  description: A successful message response
  title: Zaap
  contact:
    name: Zaap Support
    url: https://zaap.vazapay.com/support
    email: support+zaap@vazapay.com
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers: []
security: []
paths:
  /log:
    get:
      tags:
        - log
      summary: Get all Logs
      description: Use this endpoint to get all logs of sent messages
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/LogResponse'
        '400':
          description: Bad Request
          schema:
            $ref: '#/definitions/ErrorResponse'
        '404':
          description: Not Found
          schema:
            $ref: '#/definitions/ErrorResponse'
        '500':
          description: Internal Server Error
          schema:
            $ref: '#/definitions/ErrorResponse'
      security:
        - zaapApiKey: []
components: {}

````