Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dauerfreigabe für Anlieferung einer Zahlungsdatei (Payment Submission Service, PSS) #21

Open
chatelao opened this issue Jun 12, 2020 · 0 comments
Labels
APIS (Spezifikation) Formelle Anpassungen der Spezifikation enhancement New feature or request

Comments

@chatelao
Copy link
Collaborator

Ausgangslage:

  1. Oft gibt es in den Buchhaltungsabteilungen eine Rollentrennung zwischen "Zahlungserfassung und Upload in's e-Banking" im Buchhaltungssystem und der effektiven Freigabe der Zahlung zur Ausführung im e-Banking.
  2. Der Ablauf im API erfordert nach der Auslösung im Buchhaltungssystem direkt ein Login und eine Bestätigung im e-Banking

Änderungsantrag:

  1. Der TPP soll im Rahmen der Consent-Erteilung für die Konten zusätzlich zu den Lese-Freigaben (Stammdaten/Bewegungen/Saldo) auch ein "Schreib" Rechte für die Zahlungseinlieferung ohne Ausführung vergeben können.
  2. In diesem Fall könnte der TPP anschliessend Zahlungsdateien in das e-Banking zur Freigabe bereitstellen (siehe Punkt 1 der Ausgangslage).

Die Erweiterung in der interaktiven Consent Erteilung (POST "/v1/constents") könnte wie folgt aussehen:

Beispielanfrage:

{
  "access": {
    "accounts": [
      {
        "iban": "DE88900000010000007500",
        "currency": "CHF"
      }
    ],
    "balances": [
      {
        "iban": "DE88900000010000007500",
        "currency": "CHF"
      }
    ],
    "transactions": [
      {
        "iban": "DE88900000010000007500",
        "currency": "CHF"
      }
    ],
    "payment-uploads": [
      {
        "iban": "DE88900000010000007500",
        "currency": "CHF"
      }
    ]
  },
  "recurringIndicator": true,
  "validUntil": "2020-07-12",
  "frequencyPerDay": 4,
  "combinedServiceIndicator": false
}
..

Spezifikationserweiterung:

    accountAccess:
      description: |
        Requested access services for a consent.
      type: object
      properties:
        accounts:
...
        balances:
...
        transactions:
...
        payment-uploads:
          description: |
            Is asking for payment-uploads to be uploaded to the addressed accounts. This payments
            only be executed after an additional direct oder automatic consent of the PSU inside the 
            Online Banking. Payments will stop with the status "ACCP" after technical validation.
 
            If the array is empty, the TPP is asking to upload payments to  all accessible account lists.
            This may be restricted in a PSU/ASPSP authorization dialogue.
            If the array is empty, also the arrays for accounts or balances shall be empty, if used.
          type: array
          items:
            $ref: "#/components/schemas/accountReference16-CH"
@openbankingproject-ch openbankingproject-ch added APIS (Spezifikation) Formelle Anpassungen der Spezifikation enhancement New feature or request labels Jun 12, 2020
@openbankingproject-ch openbankingproject-ch changed the title Dauerfreigabe für Anlieferung einer Zahlungsdatei Dauerfreigabe für Anlieferung einer Zahlungsdatei (Payment Submission Service, PSS) Apr 22, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
APIS (Spezifikation) Formelle Anpassungen der Spezifikation enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants