@RequestMapping(path="api/v1/pis/common-payments")
public interface PisCommonPaymentApi
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<CreateAuthorisationResponse> |
createAuthorisation(String paymentId,
CreateAuthorisationRequest request) |
org.springframework.http.ResponseEntity<CreateAuthorisationResponse> |
createAuthorisationCancellation(String paymentId,
CreateAuthorisationRequest request) |
org.springframework.http.ResponseEntity<de.adorsys.psd2.consent.api.pis.CreatePisCommonPaymentResponse> |
createCommonPayment(PisPaymentInfo request) |
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.authorisation.Authorisation> |
getAuthorisation(String authorisationId) |
org.springframework.http.ResponseEntity<List<String>> |
getAuthorisationCancellation(String authorisationId) |
org.springframework.http.ResponseEntity<List<String>> |
getAuthorisations(String paymentId) |
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.sca.AuthorisationScaApproachResponse> |
getAuthorisationScaApproach(String authorisationId) |
org.springframework.http.ResponseEntity<List<String>> |
getAuthorisationsCancellation(String paymentId) |
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.sca.ScaStatus> |
getAuthorisationScaStatus(String paymentId,
String authorisationId) |
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.sca.AuthorisationScaApproachResponse> |
getCancellationAuthorisationScaApproach(String authorisationId) |
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.sca.ScaStatus> |
getCancellationAuthorisationScaStatus(String paymentId,
String authorisationId) |
org.springframework.http.ResponseEntity<PisCommonPaymentResponse> |
getCommonPaymentById(String paymentId) |
org.springframework.http.ResponseEntity<PisCommonPaymentDataStatusResponse> |
getPisCommonPaymentStatusById(String paymentId) |
org.springframework.http.ResponseEntity<Boolean> |
isAuthenticationMethodDecoupled(String authorisationId,
String authenticationMethodId) |
org.springframework.http.ResponseEntity<Void> |
saveAuthenticationMethods(String authorisationId,
List<CmsScaMethod> methods) |
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.authorisation.Authorisation> |
updateAuthorisation(String authorisationId,
UpdateAuthorisationRequest request) |
org.springframework.http.ResponseEntity<Void> |
updateAuthorisationStatus(String authorisationId,
String authorisationStatus) |
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.authorisation.Authorisation> |
updateCancellationAuthorisation(String authorisationId,
UpdateAuthorisationRequest request) |
org.springframework.http.ResponseEntity<Void> |
updateCommonPaymentStatus(String paymentId,
String status) |
org.springframework.http.ResponseEntity<Boolean> |
updateMultilevelScaRequired(String paymentId,
boolean multilevelSca) |
org.springframework.http.ResponseEntity<Boolean> |
updateScaApproach(String authorisationId,
de.adorsys.psd2.xs2a.core.profile.ScaApproach scaApproach) |
@PostMapping(path="/")
org.springframework.http.ResponseEntity<de.adorsys.psd2.consent.api.pis.CreatePisCommonPaymentResponse> createCommonPayment(@RequestBody
PisPaymentInfo request)
@GetMapping(path="/{payment-id}/status")
org.springframework.http.ResponseEntity<PisCommonPaymentDataStatusResponse> getPisCommonPaymentStatusById(@PathVariable(value="payment-id")
String paymentId)
@GetMapping(path="/{payment-id}")
org.springframework.http.ResponseEntity<PisCommonPaymentResponse> getCommonPaymentById(@PathVariable(value="payment-id")
String paymentId)
@PutMapping(path="/{payment-id}/status/{status}")
org.springframework.http.ResponseEntity<Void> updateCommonPaymentStatus(@PathVariable(value="payment-id")
String paymentId,
@PathVariable(value="status")
String status)
@PostMapping(path="/{payment-id}/authorisations")
org.springframework.http.ResponseEntity<CreateAuthorisationResponse> createAuthorisation(@PathVariable(value="payment-id")
String paymentId,
@RequestBody
CreateAuthorisationRequest request)
@PostMapping(path="/{payment-id}/cancellation-authorisations")
org.springframework.http.ResponseEntity<CreateAuthorisationResponse> createAuthorisationCancellation(@PathVariable(value="payment-id")
String paymentId,
@RequestBody
CreateAuthorisationRequest request)
@PutMapping(path="/authorisations/{authorisation-id}")
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.authorisation.Authorisation> updateAuthorisation(@PathVariable(value="authorisation-id")
String authorisationId,
@RequestBody
UpdateAuthorisationRequest request)
@PutMapping(path="authorisations/{authorisation-id}/status/{status}")
org.springframework.http.ResponseEntity<Void> updateAuthorisationStatus(@PathVariable(value="authorisation-id")
String authorisationId,
@PathVariable(value="status")
String authorisationStatus)
@GetMapping(path="/authorisations/{authorisation-id}")
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.authorisation.Authorisation> getAuthorisation(@PathVariable(value="authorisation-id")
String authorisationId)
@GetMapping(path="/{payment-id}/authorisations/{authorisation-id}/status")
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.sca.ScaStatus> getAuthorisationScaStatus(@PathVariable(value="payment-id")
String paymentId,
@PathVariable(value="authorisation-id")
String authorisationId)
@PutMapping(path="/cancellation-authorisations/{authorisation-id}")
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.authorisation.Authorisation> updateCancellationAuthorisation(@PathVariable(value="authorisation-id")
String authorisationId,
@RequestBody
UpdateAuthorisationRequest request)
@GetMapping(path="/cancellation-authorisations/{authorisation-id}")
org.springframework.http.ResponseEntity<List<String>> getAuthorisationCancellation(@PathVariable(value="authorisation-id")
String authorisationId)
@GetMapping(path="/{payment-id}/cancellation-authorisations")
org.springframework.http.ResponseEntity<List<String>> getAuthorisationsCancellation(@PathVariable(value="payment-id")
String paymentId)
@GetMapping(path="/{payment-id}/cancellation-authorisations/{authorisation-id}/status")
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.sca.ScaStatus> getCancellationAuthorisationScaStatus(@PathVariable(value="payment-id")
String paymentId,
@PathVariable(value="authorisation-id")
String authorisationId)
@GetMapping(path="/{payment-id}/authorisations")
org.springframework.http.ResponseEntity<List<String>> getAuthorisations(@PathVariable(value="payment-id")
String paymentId)
@GetMapping(path="/authorisations/{authorisation-id}/authentication-methods/{authentication-method-id}")
org.springframework.http.ResponseEntity<Boolean> isAuthenticationMethodDecoupled(@PathVariable(value="authorisation-id")
String authorisationId,
@PathVariable(value="authentication-method-id")
String authenticationMethodId)
@PostMapping(path="/authorisations/{authorisation-id}/authentication-methods")
org.springframework.http.ResponseEntity<Void> saveAuthenticationMethods(@PathVariable(value="authorisation-id")
String authorisationId,
@RequestBody
List<CmsScaMethod> methods)
@PutMapping(path="/authorisations/{authorisation-id}/sca-approach/{sca-approach}")
org.springframework.http.ResponseEntity<Boolean> updateScaApproach(@PathVariable(value="authorisation-id")
String authorisationId,
@PathVariable(value="sca-approach")
de.adorsys.psd2.xs2a.core.profile.ScaApproach scaApproach)
@GetMapping(path="/authorisations/{authorisation-id}/sca-approach")
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.sca.AuthorisationScaApproachResponse> getAuthorisationScaApproach(@PathVariable(value="authorisation-id")
String authorisationId)
@GetMapping(path="/cancellation-authorisations/{authorisation-id}/sca-approach")
org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.sca.AuthorisationScaApproachResponse> getCancellationAuthorisationScaApproach(@PathVariable(value="authorisation-id")
String authorisationId)
Copyright © 2020. All rights reserved.