@RequestMapping(path="api/v1/pis")
public interface PisPaymentApi
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<String> |
getPaymentIdByEncryptedString(String encryptedId) |
org.springframework.http.ResponseEntity<Void> |
updatePaymentCancellationInternalRequestId(String paymentId,
String internalRequestId) |
org.springframework.http.ResponseEntity<Void> |
updatePaymentCancellationTppRedirectUri(String paymentId,
String tpPRedirectURI,
String tpPNokRedirectURI) |
org.springframework.http.ResponseEntity<Void> |
updatePaymentStatusAfterSpiService(String paymentId,
String status) |
@GetMapping(path="/payment/{payment-id}")
org.springframework.http.ResponseEntity<String> getPaymentIdByEncryptedString(@PathVariable(value="payment-id")
String encryptedId)
@PutMapping(path="/payment/{payment-id}/status/{status}")
org.springframework.http.ResponseEntity<Void> updatePaymentStatusAfterSpiService(@PathVariable(value="payment-id")
String paymentId,
@PathVariable(value="status")
String status)
@PutMapping(path="/payment/{payment-id}/cancellation/redirects")
org.springframework.http.ResponseEntity<Void> updatePaymentCancellationTppRedirectUri(@PathVariable(value="payment-id")
String paymentId,
@RequestHeader(value="TPP-Redirect-URI",required=false)
String tpPRedirectURI,
@RequestHeader(value="TPP-Nok-Redirect-URI",required=false)
String tpPNokRedirectURI)
@PutMapping(path="/payment/{payment-id}/cancellation/internal-request-id/{internal-request-id}")
org.springframework.http.ResponseEntity<Void> updatePaymentCancellationInternalRequestId(@PathVariable(value="payment-id")
String paymentId,
@PathVariable(value="internal-request-id")
String internalRequestId)
Copyright © 2020. All rights reserved.