> ## 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 Brp Activation Status

> BRP (BKV) activation status with one DSO/MGA: address the partner by
Netzbetreiber MP-ID or by any of its Bilanzierungsgebiet (MGA) EICs.
Returns the partner's communication flags and status verdict - the same
ones the overview shows - plus the Zuordnungsermaechtigung detail per
Bilanzierungsgebiet.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/process/market-partners/{key}/brp-status
openapi: 3.1.0
info:
  title: n:lead Scheduling Bridge — Data Delivery API
  version: 0.4.0
  description: >-
    API for delivering portfolio data to the n:lead scheduling bridge. Send a
    portfolio forecast per delivery day, or — if no forecast is available — the
    market-location master data, metered data and rolled-out profiles the bridge
    needs to build the consumption forecast for you. Everything downstream
    (positions, trader handoff, schedule submission to the TSOs) is operated by
    n:lead. A read-only status endpoint reports the BRP activation state per
    DSO/MGA.
servers:
  - url: >-
      https://nleadbridge-app.lemonisland-7d6503d3.germanywestcentral.azurecontainerapps.io
    description: Deployed service
  - url: http://localhost:8000
    description: Local development
security: []
paths:
  /v1/process/market-partners/{key}/brp-status:
    get:
      summary: Get Brp Activation Status
      description: |-
        BRP (BKV) activation status with one DSO/MGA: address the partner by
        Netzbetreiber MP-ID or by any of its Bilanzierungsgebiet (MGA) EICs.
        Returns the partner's communication flags and status verdict - the same
        ones the overview shows - plus the Zuordnungsermaechtigung detail per
        Bilanzierungsgebiet.
      operationId: >-
        get_brp_activation_status_v1_process_market_partners__key__brp_status_get
      parameters:
        - name: key
          in: path
          required: true
          schema:
            type: string
            title: Key
        - name: lookback_days
          in: query
          required: false
          schema:
            type: integer
            maximum: 730
            minimum: 1
            default: 90
            title: Lookback Days
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response Get Brp Activation Status V1 Process Market Partners 
                  Key  Brp Status Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````