> ## 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 Partin Resend Rejected

> Resend the PARTIN to every partner whose latest signal is a
rejection bound to a PARTIN of ours (identified via the RFF+ACE
reference in the negative CONTRL/APERAK) or a failed AS4 delivery.
Rejections referencing a UTILMD are skipped with a pointer to the
Zuordnung panel.



## OpenAPI

````yaml /setup/internal-openapi.json post /v1/process/partin/resend-rejected
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/partin/resend-rejected:
    post:
      summary: Post Partin Resend Rejected
      description: |-
        Resend the PARTIN to every partner whose latest signal is a
        rejection bound to a PARTIN of ours (identified via the RFF+ACE
        reference in the negative CONTRL/APERAK) or a failed AS4 delivery.
        Rejections referencing a UTILMD are skipped with a pointer to the
        Zuordnung panel.
      operationId: post_partin_resend_rejected_v1_process_partin_resend_rejected_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResendRejectedRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResendRejectedResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    ResendRejectedRequest:
      properties:
        dry_run:
          type: boolean
          title: Dry Run
          default: false
      type: object
      title: ResendRejectedRequest
      description: |-
        Resend to every partner whose latest signal rejects a PARTIN of ours.

        ``dry_run`` lists who would be resent to without sending anything.
    ResendRejectedResponse:
      properties:
        dry_run:
          type: boolean
          title: Dry Run
        resent:
          items:
            $ref: '#/components/schemas/ResendEntry'
          type: array
          title: Resent
        skipped:
          items:
            $ref: '#/components/schemas/ResendEntry'
          type: array
          title: Skipped
      type: object
      required:
        - dry_run
        - resent
        - skipped
      title: ResendRejectedResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ResendEntry:
      properties:
        mp_id:
          type: string
          title: Mp Id
        reason:
          type: string
          title: Reason
        role:
          anyOf:
            - type: string
            - type: 'null'
          title: Role
      type: object
      required:
        - mp_id
        - reason
      title: ResendEntry
    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

````