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

# searchSolution



## OpenAPI

````yaml /mintlify/docs/openapi.yaml get /searchSolution
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:
  /searchSolution:
    get:
      tags:
        - EzzyRest
      summary: searchSolution
      operationId: searchSolution
      parameters:
        - name: text
          in: query
          required: true
          schema:
            type: string
        - name: category
          in: query
          required: true
          schema:
            type: integer
        - name: partial
          in: query
          required: true
          schema:
            type: boolean
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SearchSolutionSS'
            application/json:
              schema:
                $ref: '#/components/schemas/SearchSolutionSS'
            text/json:
              schema:
                $ref: '#/components/schemas/SearchSolutionSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    SearchSolutionSS:
      type: object
      properties:
        service_status:
          $ref: '#/components/schemas/Servicestatus'
        list:
          type: array
          items:
            $ref: '#/components/schemas/SolutionWithWorkFlows'
        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
    SolutionWithWorkFlows:
      type: object
      properties:
        workflows:
          type: array
          items:
            $ref: '#/components/schemas/WorkFlowShortInfo'
        agents:
          type: array
          items:
            $ref: '#/components/schemas/AutomatedWorkflow'
        solution_id:
          type: integer
        is_default_solution:
          type: boolean
        workflow_ids:
          type: array
          items:
            type: integer
        create_time:
          type: string
          format: date-time
        user_id:
          type: string
        user_settings:
          type: string
        update_time:
          type: string
          format: date-time
        category:
          type: integer
        position:
          type: integer
        app_ids:
          type: array
          items:
            type: integer
        price:
          type: string
        allowed:
          type: integer
        agent_ids:
          type: array
          items:
            type: integer
        how_to_guide_invoice_id:
          type: integer
        solution_name:
          type: string
        active:
          type: integer
        global:
          type: integer
        solution_description:
          type: string
        image_url:
          type: string
        default_solution:
          type: integer
    WorkFlowShortInfo:
      type: object
      properties:
        workflow_id:
          type: integer
        workflow_name:
          type: string
        solution_id:
          type: integer
        is_default:
          type: boolean
    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

````