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

# getLogDetails



## OpenAPI

````yaml get /getLogDetails
openapi: 3.0.1
info:
  title: EzzyRest API
  version: 1.0.0
servers:
  - url: https://app.ezzydoc.com/EzzyService.svc/Rest/
    description: Production Server
security: []
paths:
  /getLogDetails:
    get:
      tags:
        - EzzyRest
      summary: getLogDetails
      operationId: getLogDetails
      parameters:
        - name: invoiceid
          in: query
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/LogDetailsSS'
            application/json:
              schema:
                $ref: '#/components/schemas/LogDetailsSS'
            text/json:
              schema:
                $ref: '#/components/schemas/LogDetailsSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    LogDetailsSS:
      type: object
      properties:
        logDetails:
          type: array
          items:
            $ref: '#/components/schemas/LogDetails'
        service_status:
          $ref: '#/components/schemas/Servicestatus'
    LogDetails:
      type: object
      properties:
        description:
          type: string
        type:
          type: integer
          enum:
            - 0
            - 1
            - 2
            - 3
            - 4
            - 5
            - 6
            - 7
            - 8
            - 9
            - 10
            - 11
            - 12
            - 13
            - 14
            - 15
            - 16
            - 17
            - 18
            - 19
            - 20
          x-enumNames:
            - LOG
            - ERROR
            - NOTE
            - WARNING
            - APPROVAL_MESSAGE
            - AUDIT_OK
            - AUDIT_FAIL
            - RESULT
            - APPROVAL_NOTE
            - LEARNING
            - LOOKUP
            - PRICECHECK_FAIL
            - BILLING
            - APPROVER
            - CURRENT_RESULT
            - WATERMARK_CLEAN_1
            - SWITCH_WORKFLOW
            - AI_EXTRACT_TASK
            - AI_WEB_TASK
            - RETRY_AT
            - LINK
    Servicestatus:
      type: object
      properties:
        invoice_id:
          type: integer
        message:
          type: string
        status:
          type: integer
          enum:
            - 0
            - 1
            - 2
            - 3
          x-enumNames:
            - OK
            - FAILED
            - NO_MORE_INVOICES
            - NOT_PERMITTED
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````