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

# customApps



## OpenAPI

````yaml get /customApps
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:
  /customApps:
    get:
      tags:
        - EzzyRest
      summary: customApps
      operationId: customApps
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/CustomAppsSS'
            application/json:
              schema:
                $ref: '#/components/schemas/CustomAppsSS'
            text/json:
              schema:
                $ref: '#/components/schemas/CustomAppsSS'
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    CustomAppsSS:
      type: object
      properties:
        service_status:
          $ref: '#/components/schemas/Servicestatus'
        list:
          type: array
          items:
            $ref: '#/components/schemas/CustomApps'
    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
    CustomApps:
      type: object
      properties:
        id:
          type: integer
        aitype:
          type: integer
        name:
          type: string
        description:
          type: string
        settings:
          type: string
        scope:
          type: integer
        modifiable:
          type: boolean
        url:
          type: string
        code:
          type: string
        standalone:
          type: boolean
        state:
          type: integer
        webhook:
          type: string
        comment:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````