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

# List the partners deferred until a first supply

> Every partner deferred because it registers market partners only
once a supply is imminent, with the reason and when it was set.



## OpenAPI

````yaml /setup/internal-openapi.json get /v1/process/market-partners/zurueckstellungen
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://{host}
    description: Deployed service
    variables:
      host:
        default: api.energy.nlead.ch
        description: >-
          The service hostname - n:lead provides it (see the Base URL on the API
          introduction page)
  - url: http://localhost:8000
    description: Local development
security: []
paths:
  /v1/process/market-partners/zurueckstellungen:
    get:
      summary: List the partners deferred until a first supply
      description: |-
        Every partner deferred because it registers market partners only
        once a supply is imminent, with the reason and when it was set.
      operationId: get_zurueckstellungen_v1_process_market_partners_zurueckstellungen_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ZurueckstellungenListResponse'
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    ZurueckstellungenListResponse:
      properties:
        zurueckstellungen:
          items:
            $ref: '#/components/schemas/ZurueckstellungResponse'
          type: array
          title: Zurueckstellungen
          description: Every standing deferral
      type: object
      required:
        - zurueckstellungen
      title: ZurueckstellungenListResponse
    ZurueckstellungResponse:
      properties:
        mp_id:
          type: string
          title: Mp Id
          description: The deferred partner's MP-ID
        name:
          type: string
          title: Name
          description: Partner name from the registry, may be empty
        reason:
          type: string
          title: Reason
        noted_at:
          type: string
          title: Noted At
          description: When the deferral was set
      type: object
      required:
        - mp_id
        - name
        - reason
        - noted_at
      title: ZurueckstellungResponse
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    HTTPBearer:
      type: http
      description: OIDC access token (Auth0 M2M)
      scheme: bearer

````