Package de.adorsys.psd2.consent.api
Interface AspspConsentDataApi
-
@RequestMapping(path="api/v1/aspsp-consent-data/consents/{consent-id}") public interface AspspConsentDataApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<Boolean>deleteAspspConsentData(String encryptedConsentId)org.springframework.http.ResponseEntity<de.adorsys.psd2.consent.api.CmsAspspConsentDataBase64>getAspspConsentData(String encryptedConsentId)org.springframework.http.ResponseEntity<Boolean>updateAspspConsentData(String encryptedConsentId, de.adorsys.psd2.consent.api.CmsAspspConsentDataBase64 request)
-
-
-
Method Detail
-
getAspspConsentData
@GetMapping org.springframework.http.ResponseEntity<de.adorsys.psd2.consent.api.CmsAspspConsentDataBase64> getAspspConsentData(@PathVariable("consent-id") String encryptedConsentId)
-
updateAspspConsentData
@PutMapping org.springframework.http.ResponseEntity<Boolean> updateAspspConsentData(@PathVariable("consent-id") String encryptedConsentId, @RequestBody de.adorsys.psd2.consent.api.CmsAspspConsentDataBase64 request)
-
-