Interface PisCommonPaymentApi


  • @RequestMapping(path="api/v1/pis/common-payments")
    public interface PisCommonPaymentApi
    • 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)
      • updateMultilevelScaRequired

        @PutMapping(path="/{payment-id}/multilevel-sca")
        org.springframework.http.ResponseEntity<Boolean> updateMultilevelScaRequired​(@PathVariable(name="payment-id")
                                                                                     String paymentId,
                                                                                     @RequestParam(value="multilevel-sca",defaultValue="false")
                                                                                     boolean multilevelSca)