forked from w3c/webpayments
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refined SEPA Credit Transfer to add the web interactions
- Loading branch information
mattsaxon
authored and
mattsaxon
committed
Dec 11, 2015
1 parent
3619f02
commit 318e2f4
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
PaymentFlows/CreditTransfer/WebInitiatedSEPACreditTransfer-Current.pml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@startuml | ||
Autonumber | ||
|
||
participant "Payee (Merchant) Bank" as MB | ||
Participant "Payee (Merchant) PSP" as MPSP | ||
Participant "Payee (Merchant) Site" as Payee | ||
Actor "Payer (Shopper) Browser" as Payer | ||
participant "Payer (Shopper) Bank" as CB | ||
|
||
|
||
note over MPSP, Payer: HTTPS | ||
|
||
title PSP Mediated (SEPA) Credit Transfer (Current) | ||
|
||
Payee->Payer: Basket Page with Pay Button | ||
Payer->MPSP: Press Pay | ||
|
||
MPSP->Payer: Payment Method Choice Page | ||
Payer->MPSP: Select Credit Transfer | ||
MPSP->Payer: Provide Bank Transfer Details (e.g. IBAN) | ||
Payer->MPSP: OK | ||
MPSP->Payer: Result Screen "Pending Transfer" | ||
|
||
MPSP-[#black]>Payee: Payment Notification (Pending) | ||
|
||
group ISO20022 SEPA Transfer | ||
Payer -[#green]> CB: CustomerCreditTransferInitiation | ||
CB -[#green]> Payer: CustomerPaymentStatusReport | ||
CB -[#green]> MB : FIToFICustormerCreditTransfer | ||
MB -[#green]> MPSP : BankToCustomerDebitCreditNotification | ||
end | ||
|
||
MPSP-[#black]>Payee: Payment Notification (Cleared) | ||
Payee-[#black]>Payer: Payment Notification (email) | ||
|
||
@enduml |