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

# getSolutionDetails



## OpenAPI

````yaml /mintlify/docs/openapi.yaml get /getSolutionDetails
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:
  /getSolutionDetails:
    get:
      tags:
        - EzzyRest
      summary: getSolutionDetails
      operationId: getSolutionDetails
      parameters:
        - name: solution_id
          in: query
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SolutionDetailsSS'
            application/json:
              schema:
                $ref: '#/components/schemas/SolutionDetailsSS'
            text/json:
              schema:
                $ref: '#/components/schemas/SolutionDetailsSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    SolutionDetailsSS:
      type: object
      properties:
        workflow:
          type: array
          items:
            $ref: '#/components/schemas/WorkflowFullDetails'
        service_status:
          $ref: '#/components/schemas/Servicestatus'
    WorkflowFullDetails:
      type: object
      properties:
        workflow:
          $ref: '#/components/schemas/MyWorkflowItemWithSettings'
        workflowitems:
          type: array
          items:
            $ref: '#/components/schemas/WorkflowItemFull'
        agents:
          type: array
          items:
            $ref: '#/components/schemas/AutomatedWorkflow'
    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
    MyWorkflowItemWithSettings:
      type: object
      properties:
        settings:
          type: string
        old_settings:
          type: string
        isAutomatic:
          type: boolean
        user_id:
          type: string
        create_time:
          type: string
          format: date-time
        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
    WorkflowItemFull:
      type: object
      properties:
        workflow_id:
          type: integer
        workflow_item_id:
          type: integer
        description:
          type: string
        from:
          type: integer
        next:
          type: integer
        to:
          type: integer
    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

````