> ## 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.

# searchInvoicesPagedDate



## OpenAPI

````yaml /mintlify/docs/openapi.yaml get /searchInvoicesPagedDate
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:
  /searchInvoicesPagedDate:
    get:
      tags:
        - EzzyRest
      summary: searchInvoicesPagedDate
      operationId: searchInvoicesPagedDate
      parameters:
        - name: search_tag
          in: query
          required: true
          schema:
            type: string
        - name: includedeleted
          in: query
          required: true
          schema:
            type: integer
        - name: page
          in: query
          required: true
          schema:
            type: integer
        - name: size
          in: query
          required: true
          schema:
            type: integer
        - name: statefilter
          in: query
          required: true
          schema:
            type: string
        - name: order
          in: query
          required: true
          schema:
            type: string
        - name: documentType
          in: query
          required: true
          schema:
            type: integer
        - name: fromDate
          in: query
          required: true
          schema:
            type: string
        - name: toDate
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SearchInvoiceSS'
            application/json:
              schema:
                $ref: '#/components/schemas/SearchInvoiceSS'
            text/json:
              schema:
                $ref: '#/components/schemas/SearchInvoiceSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    SearchInvoiceSS:
      type: object
      properties:
        service_status:
          $ref: '#/components/schemas/Servicestatus'
        list:
          type: array
          items:
            $ref: '#/components/schemas/SearchInvoiceResult'
        page_count:
          type: integer
        total_count:
          type: integer
    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
    SearchInvoiceResult:
      type: object
      properties:
        InvoiceId:
          type: string
        UserID:
          type: string
        Data:
          type: string
        Label:
          type: string
        Note:
          type: string
        DocumentType:
          type: integer
        DocumentSubType:
          type: integer
        Date:
          type: string
        updateDate:
          type: string
        Filename:
          type: string
        Deleted:
          type: integer
        ImageState:
          type: integer
        Completed:
          type: integer
        WorkflowName:
          type: string
        WorkflowType:
          type: integer
        thumb_url:
          type: string
        blob_url:
          type: string
        pdf_url:
          type: string
        links:
          type: array
          items:
            $ref: '#/components/schemas/OpenLink'
        Trail:
          type: string
        Number:
          type: string
        Contact:
          type: string
    OpenLink:
      type: object
      properties:
        link:
          type: string
        name:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````