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

# Get fee configs



## OpenAPI

````yaml json-files/fee-config-v1.openapi.json get /v1/fee-configs
openapi: 3.0.3
info:
  title: Fee Configuration API
  version: 1.0.0
servers:
  - url: https://api.{{tenant}}.ext-uat1-sandbox.mycore.enfuce.com/processor
    description: UAT Sandbox
  - url: https://api.{{tenant}}.eu.live.prod.mycore.enfuce.com/processor
    description: Production
security: []
tags:
  - name: FeeConfig
paths:
  /v1/fee-configs:
    get:
      tags:
        - FeeConfig
      operationId: getFeeConfigs
      responses:
        '200':
          description: Fee configurations successfully retrieved
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FeeConfigDetails'
components:
  schemas:
    FeeConfigDetails:
      type: object
      required:
        - id
        - fee_config_id
        - fee_config
        - apply_to
      properties:
        id:
          $ref: '#/components/schemas/uuid'
        fee_config_id:
          type: string
        fee_config:
          $ref: '#/components/schemas/FeeConfig'
        apply_to:
          $ref: '#/components/schemas/ApplyTo'
    uuid:
      type: string
      format: uuid
    FeeConfig:
      type: object
      properties:
        atm:
          $ref: '#/components/schemas/Fee'
        cash:
          $ref: '#/components/schemas/Fee'
        markup:
          $ref: '#/components/schemas/Fee'
    ApplyTo:
      type: object
      description: Currently effective bindings for the fee configuration.
      required:
        - programs
        - cards
      properties:
        programs:
          type: array
          description: >-
            At most the 1000 most recently created program bindings are
            returned.
          maxItems: 1000
          items:
            $ref: '#/components/schemas/uuid'
        cards:
          type: array
          description: At most the 1000 most recently created card bindings are returned.
          maxItems: 1000
          items:
            $ref: '#/components/schemas/uuid'
    Fee:
      type: object
      nullable: true
      properties:
        fixed:
          $ref: '#/components/schemas/FixedFee'
        variable:
          $ref: '#/components/schemas/VariableFee'
    FixedFee:
      type: object
      nullable: true
      required:
        - value
      properties:
        value:
          type: number
    VariableFee:
      type: object
      nullable: true
      properties:
        max:
          type: number
          nullable: true
        min:
          type: number
          nullable: true
        percentage:
          type: number
          nullable: true

````