@RestController @RequestMapping(path="/consent/confirmation/pis") public class PaymentConfirmationController extends Object
| Constructor and Description |
|---|
PaymentConfirmationController() |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity |
confirmTan(Confirmation confirmation) |
org.springframework.http.ResponseEntity<Void> |
generateAndSendTan(String psuId,
String authenticationMethodId) |
org.springframework.http.ResponseEntity |
updatePisConsentStatus(String consentId,
AspspConsentStatus status) |
@PostMapping(path="/{psu-id}/{sca-method-selected}")
public org.springframework.http.ResponseEntity<Void> generateAndSendTan(@PathVariable(value="psu-id")
String psuId,
@PathVariable(value="sca-method-selected")
String authenticationMethodId)
@PutMapping
public org.springframework.http.ResponseEntity confirmTan(@RequestBody
Confirmation confirmation)
@PutMapping(path="/{consent-id}/{status}")
public org.springframework.http.ResponseEntity updatePisConsentStatus(@PathVariable(value="consent-id")
String consentId,
@PathVariable(value="status")
AspspConsentStatus status)
Copyright © 2018. All rights reserved.