Interface GiropayTransactionWithGiropayIDRequest
- All Superinterfaces:
GiroCheckoutRequest
Initialisierung einer giropay Zahlung mit Altersverifikation (abhängig von
der projectId). Durch eine erfolgreiche Initialisierung wird eine
Referenznummer erstellt sowie ein Weiterleitungslink (redirect) an den
Händler übermittelt. Der übermittelte Link führt zum Onlinebanking des
Käufers. Er muss an diese URL weitergeleitet werden. Dies kann durch einen
HTTP-Redirect-Header, eine HTML-Seite mit entsprechendem Meta-Tag oder
Javascript erfolgen.
-
Method Summary
Modifier and TypeMethodDescriptionexecute()
Initialisiert eine giropay Zahlung mit Altersverifikation Beispiel:
GiropayTransactionWithGiropayIDRequest request = project .createGiropayTransactionWithGiropayIDRequest(merchantTxId, amount, currency, purpose, bic, iban, info1Label, info2Label, info3Label, info4Label, info5Label, info1Text, info2Text, info3Text, info4Text, info5Text, urlRedirect, urlNotify);
GiropayTransactionWithGiropayIDResponse response = request.execute();
-
Method Details
-
execute
GiropayTransactionWithGiropayIDResponse execute() throws GiroCheckoutException, GiroCheckoutProtocolExceptionInitialisiert eine giropay Zahlung mit Altersverifikation Beispiel:
GiropayTransactionWithGiropayIDRequest request = project .createGiropayTransactionWithGiropayIDRequest(merchantTxId, amount, currency, purpose, bic, iban, info1Label, info2Label, info3Label, info4Label, info5Label, info1Text, info2Text, info3Text, info4Text, info5Text, urlRedirect, urlNotify);
GiropayTransactionWithGiropayIDResponse response = request.execute();
- Returns:
- GiropayTransactionWithGiropayIDResponse
- Throws:
GiroCheckoutException
GiroCheckoutProtocolException
-