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

# Get Zuordnung Targets

> Dropdown data for the console: every active DSO/Bilanzierungsgebiet
pair from the official BDEW list, and the Zeitreihentyp codes.



## OpenAPI

````yaml /setup/internal-openapi.json get /v1/process/zuordnungsermaechtigungen/targets
openapi: 3.1.0
info:
  title: n:lead Scheduling Bridge — Internal API
  version: 0.4.0
  description: >-
    Internal API of the n:lead scheduling bridge: the process endpoints that
    drive the day-ahead pipeline (aggregate, publish the open position, submit
    schedules, generate forecasts, orchestrate) and the operator console
    endpoints. Requires the process API key; not for customer use.
servers:
  - url: >-
      https://nleadbridge-app.lemonisland-7d6503d3.germanywestcentral.azurecontainerapps.io
    description: Deployed service
  - url: http://localhost:8000
    description: Local development
security: []
paths:
  /v1/process/zuordnungsermaechtigungen/targets:
    get:
      summary: Get Zuordnung Targets
      description: |-
        Dropdown data for the console: every active DSO/Bilanzierungsgebiet
        pair from the official BDEW list, and the Zeitreihentyp codes.
      operationId: get_zuordnung_targets_v1_process_zuordnungsermaechtigungen_targets_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: >-
                  Response Get Zuordnung Targets V1 Process
                  Zuordnungsermaechtigungen Targets Get
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    HTTPBearer:
      type: http
      description: OIDC access token (Auth0 M2M)
      scheme: bearer

````