Use AccountApi instead.
@Deprecated public interface Psd2AccountInformationApi
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<ConsentsResponseTO> |
createConsent(Map<String,String> headers,
ConsentsTO body)
Deprecated.
|
org.springframework.http.ResponseEntity<Void> |
deleteConsent(String consentId,
Map<String,String> headers)
Deprecated.
|
org.springframework.http.ResponseEntity<AccountListTO> |
getAccountList(Map<String,String> queryParameters,
Map<String,String> headers)
Deprecated.
|
org.springframework.http.ResponseEntity<ReadAccountBalanceResponseTO> |
getBalances(String accountId,
Map<String,String> queryParameters,
Map<String,String> headers)
Deprecated.
|
org.springframework.http.ResponseEntity<ConsentInformationResponseTO> |
getConsentInformation(String consentId,
Map<String,String> headers)
Deprecated.
|
org.springframework.http.ResponseEntity<ScaStatusResponseTO> |
getConsentScaStatus(String consentId,
String authorisationId,
Map<String,String> headers)
Deprecated.
|
org.springframework.http.ResponseEntity<ConsentStatusResponseTO> |
getConsentStatus(String consentId,
Map<String,String> headers)
Deprecated.
|
org.springframework.http.ResponseEntity |
getTransactionList(String accountId,
Map<String,String> queryParameters,
Map<String,String> headers)
Deprecated.
|
org.springframework.http.ResponseEntity<StartScaProcessResponseTO> |
startConsentAuthorisation(String consentId,
Map<String,String> headers,
UpdateAuthorisationTO body)
Deprecated.
|
org.springframework.http.ResponseEntity<UpdateAuthorisationResponseTO> |
updateConsentsPsuData(String consentId,
String authorisationId,
Map<String,String> headers,
UpdateAuthorisationTO body)
Deprecated.
|
@RequestMapping(value="/accounts",
method=GET)
org.springframework.http.ResponseEntity<AccountListTO> getAccountList(@RequestParam
Map<String,String> queryParameters,
@RequestHeader
Map<String,String> headers)
throws IOException
IOException@RequestMapping(value="/accounts/{account-id}/balances",
method=GET)
org.springframework.http.ResponseEntity<ReadAccountBalanceResponseTO> getBalances(@PathVariable(value="account-id")
String accountId,
@RequestParam
Map<String,String> queryParameters,
@RequestHeader
Map<String,String> headers)
throws IOException
IOException@RequestMapping(value="/accounts/{account-id}/transactions",
method=GET)
org.springframework.http.ResponseEntity getTransactionList(@PathVariable(value="account-id")
String accountId,
@RequestParam
Map<String,String> queryParameters,
@RequestHeader
Map<String,String> headers)
throws IOException
IOException@RequestMapping(value="/consents",
method=POST,
consumes="application/json")
org.springframework.http.ResponseEntity<ConsentsResponseTO> createConsent(@RequestHeader
Map<String,String> headers,
@RequestBody
ConsentsTO body)
@RequestMapping(value="/consents/{consentId}",
method=GET)
org.springframework.http.ResponseEntity<ConsentInformationResponseTO> getConsentInformation(@PathVariable(value="consentId")
String consentId,
@RequestHeader
Map<String,String> headers)
@RequestMapping(value="/consents/{consentId}",
method=DELETE)
org.springframework.http.ResponseEntity<Void> deleteConsent(@PathVariable(value="consentId")
String consentId,
@RequestHeader
Map<String,String> headers)
@RequestMapping(value="/consents/{consentId}/status",
method=GET)
org.springframework.http.ResponseEntity<ConsentStatusResponseTO> getConsentStatus(@PathVariable(value="consentId")
String consentId,
@RequestHeader
Map<String,String> headers)
@RequestMapping(value="/consents/{consentId}/authorisations",
method=POST,
consumes="application/json")
org.springframework.http.ResponseEntity<StartScaProcessResponseTO> startConsentAuthorisation(@PathVariable(value="consentId")
String consentId,
@RequestHeader
Map<String,String> headers,
@RequestBody
UpdateAuthorisationTO body)
@RequestMapping(value="/consents/{consentId}/authorisations/{authorisationId}",
method=GET)
org.springframework.http.ResponseEntity<ScaStatusResponseTO> getConsentScaStatus(@PathVariable(value="consentId")
String consentId,
@PathVariable(value="authorisationId")
String authorisationId,
@RequestHeader
Map<String,String> headers)
@RequestMapping(value="/consents/{consentId}/authorisations/{authorisationId}",
method=PUT,
consumes="application/json")
org.springframework.http.ResponseEntity<UpdateAuthorisationResponseTO> updateConsentsPsuData(@PathVariable(value="consentId")
String consentId,
@PathVariable(value="authorisationId")
String authorisationId,
@RequestHeader
Map<String,String> headers,
@RequestBody
UpdateAuthorisationTO body)
Copyright © 2019. All rights reserved.