Package de.adorsys.psd2.consent.api
Interface PisCommonPaymentApi
-
@RequestMapping(path="api/v1/pis/common-payments") public interface PisCommonPaymentApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<de.adorsys.psd2.consent.api.pis.CreatePisCommonPaymentResponse>createCommonPayment(PisPaymentInfo request)org.springframework.http.ResponseEntity<de.adorsys.psd2.consent.api.pis.PisCommonPaymentResponse>getCommonPaymentById(String paymentId)org.springframework.http.ResponseEntity<PisCommonPaymentDataStatusResponse>getPisCommonPaymentStatusById(String paymentId)org.springframework.http.ResponseEntity<Void>updateCommonPaymentStatus(String paymentId, String status)org.springframework.http.ResponseEntity<Boolean>updateMultilevelScaRequired(String paymentId, boolean multilevelSca)
-
-
-
Method Detail
-
createCommonPayment
@PostMapping(path="/") org.springframework.http.ResponseEntity<de.adorsys.psd2.consent.api.pis.CreatePisCommonPaymentResponse> createCommonPayment(@RequestBody PisPaymentInfo request)
-
getPisCommonPaymentStatusById
@GetMapping(path="/{payment-id}/status") org.springframework.http.ResponseEntity<PisCommonPaymentDataStatusResponse> getPisCommonPaymentStatusById(@PathVariable("payment-id") String paymentId)
-
getCommonPaymentById
@GetMapping(path="/{payment-id}") org.springframework.http.ResponseEntity<de.adorsys.psd2.consent.api.pis.PisCommonPaymentResponse> getCommonPaymentById(@PathVariable("payment-id") String paymentId)
-
updateCommonPaymentStatus
@PutMapping(path="/{payment-id}/status/{status}") org.springframework.http.ResponseEntity<Void> updateCommonPaymentStatus(@PathVariable("payment-id") String paymentId, @PathVariable("status") String status)
-
-