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

# Configuration

> OFREP provider configuration

<RequestExample>
  ```bash cURL theme={null}
  curl --url https://try.flipt.io/ofrep/v1/configuration \
    --header 'Accept: application/json'
  ```
</RequestExample>


## OpenAPI

````yaml GET /ofrep/v1/configuration
openapi: 3.0.3
info:
  title: api
  version: 1.47.0
servers:
  - url: http://localhost:8080
security:
  - bearerAuth: []
tags:
  - name: AuthenticationMethodKubernetesService
  - name: AuthenticationMethodOIDCService
  - name: AuthenticationMethodTokenService
  - name: AuthenticationService
  - name: EvaluationService
  - name: Flipt
  - name: OFREPService
paths:
  /ofrep/v1/configuration:
    get:
      tags:
        - OFREPService
      description: OFREP provider configuration
      operationId: ofrep.configuration
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetProviderConfigurationResponse'
components:
  schemas:
    GetProviderConfigurationResponse:
      type: object
      properties:
        name:
          type: string
        capabilities:
          $ref: '#/components/schemas/Capabilities'
    Capabilities:
      type: object
      properties:
        cacheInvalidation:
          $ref: '#/components/schemas/CacheInvalidation'
        flagEvaluation:
          $ref: '#/components/schemas/FlagEvaluation'
    CacheInvalidation:
      type: object
      properties:
        polling:
          $ref: '#/components/schemas/Polling'
    FlagEvaluation:
      type: object
      properties:
        supportedTypes:
          type: array
          items:
            type: string
    Polling:
      type: object
      properties:
        enabled:
          type: boolean
        minPollingIntervalMs:
          type: integer
          format: uint32
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````