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

# getSystemWorkflows



## OpenAPI

````yaml get /getSystemWorkflows
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:
  /getSystemWorkflows:
    get:
      tags:
        - EzzyRest
      summary: getSystemWorkflows
      operationId: getSystemWorkflows
      parameters:
        - name: doctype
          in: query
          required: true
          schema:
            type: integer
            enum:
              - 0
              - 1
              - 2
              - 3
              - 4
              - 5
              - 6
              - 7
              - 8
              - 9
              - 10
              - 11
              - 12
              - 13
              - 14
              - 15
              - 16
              - 17
              - 18
              - 19
              - 20
              - 21
            x-enumNames:
              - Unknown
              - Invoice
              - EInvoice
              - Correspondence
              - BusinessCards
              - Picture
              - Order
              - Data
              - Notes
              - Media
              - Template
              - Form
              - Blob
              - Statement
              - Application
              - Junk
              - Event
              - Enquiry
              - Generic
              - Remittance
              - AI
              - AIWEB
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/MyWorkflowsSS'
            application/json:
              schema:
                $ref: '#/components/schemas/MyWorkflowsSS'
            text/json:
              schema:
                $ref: '#/components/schemas/MyWorkflowsSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    MyWorkflowsSS:
      type: object
      properties:
        service_status:
          $ref: '#/components/schemas/Servicestatus'
        myworkflows:
          $ref: '#/components/schemas/MyWorkflows'
    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
    MyWorkflows:
      type: object
      properties:
        active_workflow_id:
          type: integer
        doc_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
            - 21
          x-enumNames:
            - Unknown
            - Invoice
            - EInvoice
            - Correspondence
            - BusinessCards
            - Picture
            - Order
            - Data
            - Notes
            - Media
            - Template
            - Form
            - Blob
            - Statement
            - Application
            - Junk
            - Event
            - Enquiry
            - Generic
            - Remittance
            - AI
            - AIWEB
        list:
          type: array
          items:
            $ref: '#/components/schemas/MyWorkflowItem'
    MyWorkflowItem:
      type: object
      properties:
        description:
          type: string
        documentType:
          type: integer
          enum:
            - 0
            - 1
            - 2
            - 3
            - 4
            - 5
            - 6
            - 7
            - 8
            - 9
            - 10
            - 11
            - 12
            - 13
            - 14
            - 15
            - 16
            - 17
            - 18
            - 19
            - 20
            - 21
          x-enumNames:
            - Unknown
            - Invoice
            - EInvoice
            - Correspondence
            - BusinessCards
            - Picture
            - Order
            - Data
            - Notes
            - Media
            - Template
            - Form
            - Blob
            - Statement
            - Application
            - Junk
            - Event
            - Enquiry
            - Generic
            - Remittance
            - AI
            - AIWEB
        isDefault:
          type: boolean
        isSystem:
          type: integer
        name:
          type: string
        workflowID:
          type: integer
        workflowType:
          type: integer
        frequency:
          type: integer
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````