> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hotglue.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve Connector Available Filters

> Fetch the Available Filters configuration for a connector



## OpenAPI

````yaml get /{env_id}/{flow_id}/{tenant}/connectors/{connector_id}/availableFilters
openapi: 3.1.0
info:
  title: hotglue API
  version: '1.2'
servers:
  - url: https://api.hotglue.com
security:
  - sec0: []
paths:
  /{env_id}/{flow_id}/{tenant}/connectors/{connector_id}/availableFilters:
    get:
      summary: Retrieve Connector Available Filters
      description: Fetch the Available Filters configuration for a connector
      operationId: retrieve-connector-available-filters
      parameters:
        - name: env_id
          in: path
          description: ID of environment
          schema:
            type: string
          required: true
        - name: flow_id
          in: path
          description: ID of flow
          schema:
            type: string
          required: true
        - name: tenant
          in: path
          description: ID of tenant
          schema:
            type: string
          required: true
        - name: connector_id
          in: path
          description: ID of connector
          schema:
            type: string
            example: netsuite-rest
          required: true
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    filters_version: 1.0.0
                    reference_data:
                      vendors:
                        - vendor_id: '27'
                          vendor_name: Acme Corp
                        - vendor_id: '62'
                          vendor_name: Globex LLC
                    streams:
                      bills:
                        supported_operators:
                          - AND
                          - OR
                        supports_nesting_clauses: true
                        filters:
                          vendor_id:
                            label: Bill Vendor ID
                            supported_operators:
                              - EQ
                              - NEQ
                              - IN
                              - NOT IN
                              - LIKE
                            target_field: vendor_id
                            options: reference_data.vendors
                          vendor_name:
                            label: Bill Vendor Name
                            supported_operators:
                              - EQ
                              - NEQ
                              - IN
                              - NOT IN
                              - LIKE
                            target_field: vendor_name
                            options: reference_data.vendors
                          status:
                            label: Bill Status
                            supported_operators:
                              - EQ
                              - NEQ
                              - IN
                              - NOT IN
                            target_field: status
                            options:
                              - status: Pending Approval
                              - status: Approved
                              - status: Paid
              schema:
                type: object
                properties:
                  filters_version:
                    type: string
                    description: Version of the filters schema format.
                  reference_data:
                    type: object
                    description: >-
                      Lookup tables used as option sources for filterable
                      fields; keys are referenced via dot notation in stream
                      filter definitions (e.g. reference_data.vendors).
                    additionalProperties: true
                  streams:
                    type: object
                    description: Map of stream names to their filter definitions.
                    additionalProperties: true
        '404':
          description: '404'
          content:
            application/json:
              examples:
                NotFoundError:
                  value:
                    Code: NotFoundError
                    Message: 'Available filters not found for connector: netsuite-rest'
              schema:
                type: object
                properties:
                  Code:
                    type: string
                    example: NotFoundError
                  Message:
                    type: string
                    example: 'Available filters not found for connector: netsuite-rest'
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: x-api-key

````