Interface CmsAspspStopListApi
-
@RequestMapping(path="aspsp-api/v1/tpp/stop-list") public interface CmsAspspStopListApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<Boolean>blockTpp(String tppAuthorisationNumber, String instanceId, Long lockPeriod)org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.tpp.TppStopListRecord>getTppStopListRecord(String tppAuthorisationNumber, String instanceId)org.springframework.http.ResponseEntity<Boolean>unblockTpp(String tppAuthorisationNumber, String instanceId)
-
-
-
Method Detail
-
getTppStopListRecord
@GetMapping org.springframework.http.ResponseEntity<de.adorsys.psd2.xs2a.core.tpp.TppStopListRecord> getTppStopListRecord(@RequestHeader("tpp-authorisation-number") String tppAuthorisationNumber, @RequestHeader(value="instance-id",required=false,defaultValue="UNDEFINED") String instanceId)
-
blockTpp
@PutMapping(path="/block") org.springframework.http.ResponseEntity<Boolean> blockTpp(@RequestHeader("tpp-authorisation-number") String tppAuthorisationNumber, @RequestHeader(value="instance-id",required=false,defaultValue="UNDEFINED") String instanceId, @RequestHeader(value="lock-period",required=false) Long lockPeriod)
-
-