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

# Post Zuordnung Auto

> Send the configured Zuordnungsermaechtigung selection to every DSO
whose PARTIN exchange is complete in both directions and carries no
standing rejection - one activation per Bilanzierungsgebiet, each
granted exactly once (ledger ``zoe_auto``).



## OpenAPI

````yaml /setup/internal-openapi.json post /v1/process/zuordnungsermaechtigungen/auto
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/auto:
    post:
      summary: Post Zuordnung Auto
      description: |-
        Send the configured Zuordnungsermaechtigung selection to every DSO
        whose PARTIN exchange is complete in both directions and carries no
        standing rejection - one activation per Bilanzierungsgebiet, each
        granted exactly once (ledger ``zoe_auto``).
      operationId: post_zuordnung_auto_v1_process_zuordnungsermaechtigungen_auto_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AutoZoeRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AutoZoeResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    AutoZoeRequest:
      properties:
        dry_run:
          type: boolean
          title: Dry Run
          default: false
      type: object
      title: AutoZoeRequest
      description: |-
        Grant the standing Zuordnungsermaechtigung selection to every DSO
        whose PARTIN exchange is complete. ``dry_run`` lists without sending.
    AutoZoeResponse:
      properties:
        dry_run:
          type: boolean
          title: Dry Run
        valid_from:
          type: string
          title: Valid From
        zeitreihentypen:
          items:
            type: string
          type: array
          title: Zeitreihentypen
        sent:
          items:
            $ref: '#/components/schemas/AutoZoeGrant'
          type: array
          title: Sent
        skipped:
          items:
            $ref: '#/components/schemas/AutoZoeSkip'
          type: array
          title: Skipped
      type: object
      required:
        - dry_run
        - valid_from
        - zeitreihentypen
        - sent
        - skipped
      title: AutoZoeResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AutoZoeGrant:
      properties:
        mp_id:
          type: string
          title: Mp Id
        name:
          type: string
          title: Name
        bgs:
          items:
            type: string
          type: array
          title: Bgs
      type: object
      required:
        - mp_id
        - name
        - bgs
      title: AutoZoeGrant
    AutoZoeSkip:
      properties:
        mp_id:
          type: string
          title: Mp Id
        name:
          type: string
          title: Name
          default: ''
        reason:
          type: string
          title: Reason
      type: object
      required:
        - mp_id
        - reason
      title: AutoZoeSkip
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    HTTPBearer:
      type: http
      description: OIDC access token (Auth0 M2M)
      scheme: bearer

````