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

# List Payments

> Listet Zahlungen der Organisation aus den Business-OS-Datensätzen (`banking_payments`) — filterbar nach Verbindung, Konto und Datum. Status wird per Webhook aktuell gehalten; den garantiert live-aktuellen Status liefert `GET /v2/banking/payments/{id}`.

**Cost:** 0 Credits



## OpenAPI

````yaml GET /v2/banking/payments
openapi: 3.1.0
info:
  title: Business OS API
  description: >-
    API für Business OS – Zugang zu DATEV und Banking Enterprise-Schnittstellen.
    Alle Endpoints erfordern einen API Key im `x-api-key` Header. Credits werden
    pro API-Call abgezogen.
  version: 2.0.0
  contact:
    name: Business OS Support
    email: impressum@business-os.de
    url: https://business-os.de/kontakt
servers:
  - url: https://api.business-os.de
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: DATEV Allgemein
    description: >-
      Modulübergreifende DATEV-Endpunkte (z. B. Abo-/Service-Diagnose für
      Mandanten)
  - name: DATEV DUO
    description: DATEV Unternehmen Online — Kassenbuch, Belegbilder und Buchungsvorschläge
  - name: DATEV ReWe - Write
    description: 'DATEV Rechnungswesen — Write: Buchungen, Kontakte, Belegtypen, Steuersätze'
  - name: DATEV ReWe - Read
    description: >-
      DATEV Rechnungswesen — Read (Export): Geschäftsjahre und weitere
      Lesemodule
  - name: Banking AIS
    description: >-
      Account Information Services — Verbindungen, Kontostände und Transaktionen
      verwalten
  - name: Banking PIS
    description: Payment Initiation Services — Zahlungen ausführen und Status abrufen
  - name: Banking Webhooks
    description: Webhook-Konfiguration für Echtzeit-Benachrichtigungen
paths:
  /v2/banking/payments:
    get:
      tags:
        - Banking PIS
      summary: List Payments
      description: >-
        Listet Zahlungen der Organisation aus den Business-OS-Datensätzen
        (`banking_payments`) — filterbar nach Verbindung, Konto und Datum.
        Status wird per Webhook aktuell gehalten; den garantiert live-aktuellen
        Status liefert `GET /v2/banking/payments/{id}`.


        **Cost:** 0 Credits
      parameters:
        - name: connection_id
          in: query
          schema:
            type: string
          description: >-
            Nach Verbindung filtern (Salt-Edge-Connection-ID). `__all__` oder
            weglassen = alle.
        - name: account_id
          in: query
          schema:
            type: string
          description: Nach Konto filtern. `__all__` oder weglassen = alle.
        - name: from_date
          in: query
          schema:
            type: string
            format: date
          description: Nur Zahlungen ab diesem Datum (YYYY-MM-DD, auf `created_at`).
        - name: to_date
          in: query
          schema:
            type: string
            format: date
          description: Nur Zahlungen bis zu diesem Datum (YYYY-MM-DD, inklusive).
        - name: sort
          in: query
          schema:
            type: string
            enum:
              - date
              - id
            default: date
          description: >-
            `date` = neueste zuerst (`created_at` absteigend); `id` =
            aufsteigend nach Payment-ID (inkrementeller Sync mit `from_id`).
        - name: from_id
          in: query
          schema:
            type: string
          description: >-
            Inkrementeller Cursor: nur Zahlungen mit ID > diesem Wert (wirkt mit
            `sort=id`).
        - name: limit
          in: query
          schema:
            type: integer
          description: Maximale Anzahl. Leer = alle.
      responses:
        '200':
          description: Liste der Zahlungen
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/PaymentRecord'
        '401':
          description: Ungültiger API Key
components:
  schemas:
    PaymentRecord:
      type: object
      description: >-
        Eine Zahlung aus den Business-OS-Datensätzen (`banking_payments`) —
        flach und filterbar. Anders als die Salt-Edge-Form (`Payment`) liegen
        die Details direkt auf oberster Ebene (kein `payment_attributes`).
      properties:
        id:
          type: string
          description: Payment-ID
          example: '7364509182736450918'
        organization_id:
          type: string
          format: uuid
          description: Organisation, der die Zahlung zugeordnet ist.
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        status:
          type: string
          description: Zahlungsstatus (per Webhook gepflegt).
          example: settled
        raw_provider_status:
          type: string
          nullable: true
          description: Roher Statuscode der Bank.
          example: ACCC
        connection_id:
          type: string
          nullable: true
          description: Salt-Edge-Connection-ID (sofern erfasst).
          example: '9182736450918273645'
        account_id:
          type: string
          nullable: true
          description: Konto-ID, von dem die Zahlung ausging.
          example: '8273645091827364509'
        provider_code:
          type: string
          example: musterbank_oauth_client_de
        provider_name:
          type: string
          example: Musterbank
        template_identifier:
          type: string
          example: SEPA
        amount:
          type: number
          description: Betrag (numerisch).
          example: 1
        currency_code:
          type: string
          example: EUR
        creditor_name:
          type: string
          example: Mustermann GmbH
        creditor_iban:
          type: string
          example: DE27100777770209299700
        debtor_iban:
          type: string
          nullable: true
          example: DE89370400440532013000
        end_to_end_id:
          type: string
          description: Auto-generiert (`BOS-…`) für Payment-↔-Transaction-Matching.
          example: BOS-1730000000000-a1b2c3d4
        description:
          type: string
          nullable: true
          description: Verwendungszweck.
          example: Rechnung RE-2026-001
        reference:
          type: string
          nullable: true
          description: Lokales Label (z.B. eigene Rechnungsnummer) — kein Feld der Bank.
          example: RG-2026-03024
        created_at:
          type: string
          format: date-time
          example: '2026-03-24T12:26:30Z'
        updated_at:
          type: string
          format: date-time
          example: '2026-03-24T12:27:10Z'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Dein Business OS API Key. Erstelle einen unter
        [app.business-os.de](https://app.business-os.de/) → API Keys.

````