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

# getAutomatedWorkflows



## OpenAPI

````yaml /mintlify/docs/openapi.yaml get /getAutomatedWorkflows
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:
  /getAutomatedWorkflows:
    get:
      tags:
        - EzzyRest
      summary: getAutomatedWorkflows
      operationId: getAutomatedWorkflows
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/AutomatedWorkflowSS'
            application/json:
              schema:
                $ref: '#/components/schemas/AutomatedWorkflowSS'
            text/json:
              schema:
                $ref: '#/components/schemas/AutomatedWorkflowSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    AutomatedWorkflowSS:
      type: object
      properties:
        list:
          type: array
          items:
            $ref: '#/components/schemas/AutomatedWorkflow'
    AutomatedWorkflow:
      type: object
      properties:
        automateID:
          type: integer
        name:
          type: string
        workflowID:
          type: integer
        startTime:
          type: string
        secondsUntilNextExecution:
          type: integer
        description:
          type: string
        blackout_start:
          type: string
        blackout_end:
          type: string
        blackout_days:
          type: string
        active:
          type: integer
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````