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

# myCustomerOrders



## OpenAPI

````yaml get /myCustomerOrders
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:
  /myCustomerOrders:
    get:
      tags:
        - EzzyRest
      summary: myCustomerOrders
      operationId: myCustomerOrders
      parameters:
        - name: state
          in: query
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomerOrdersSS'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerOrdersSS'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomerOrdersSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    CustomerOrdersSS:
      type: object
      properties:
        order:
          type: array
          items:
            $ref: '#/components/schemas/CustomerOrder'
        service_status:
          $ref: '#/components/schemas/Servicestatus'
    CustomerOrder:
      type: object
      properties:
        blob_url:
          type: string
        file_name:
          type: string
        invoice_id:
          type: integer
        open_state:
          type: integer
        order_amount:
          type: number
        order_date:
          type: string
          format: date-time
        order_number:
          type: string
        order_reference:
          type: string
        pdf_url:
          type: string
        state:
          type: integer
        thumb_url:
          type: string
    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

````