Interface PisPaymentApi


  • @RequestMapping(path="api/v1/pis")
    public interface PisPaymentApi
    • Method Detail

      • getPaymentIdByEncryptedString

        @GetMapping(path="/payment/{payment-id}")
        org.springframework.http.ResponseEntity<String> getPaymentIdByEncryptedString​(@PathVariable("payment-id")
                                                                                      String encryptedId)
      • updatePaymentStatusAfterSpiService

        @PutMapping(path="/payment/{payment-id}/status/{status}")
        org.springframework.http.ResponseEntity<Void> updatePaymentStatusAfterSpiService​(@PathVariable("payment-id")
                                                                                         String paymentId,
                                                                                         @PathVariable("status")
                                                                                         String status)
      • updatePaymentCancellationTppRedirectUri

        @PutMapping(path="/payment/{payment-id}/cancellation/redirects")
        org.springframework.http.ResponseEntity<Void> updatePaymentCancellationTppRedirectUri​(@PathVariable("payment-id")
                                                                                              String paymentId,
                                                                                              @RequestHeader(value="TPP-Redirect-URI",required=false)
                                                                                              String tpPRedirectURI,
                                                                                              @RequestHeader(value="TPP-Nok-Redirect-URI",required=false)
                                                                                              String tpPNokRedirectURI)
      • updatePaymentCancellationInternalRequestId

        @PutMapping(path="/payment/{payment-id}/cancellation/internal-request-id/{internal-request-id}")
        org.springframework.http.ResponseEntity<Void> updatePaymentCancellationInternalRequestId​(@PathVariable("payment-id")
                                                                                                 String paymentId,
                                                                                                 @PathVariable("internal-request-id")
                                                                                                 String internalRequestId)