68
loading...
This website collects cookies to deliver better user experience
curl -X POST \
https://webapi.developers.erstegroup.com/api/ebc/sandbox/v1/netapi/consents \
-H 'Content-Type: application/json' \
-H 'X-Request-ID: 4774477a-0508-4293-be86-6fca6f67adda' \
-H 'psu-ip-address: 127.0.0.1' \
-H 'web-api-key: WEB_API_KEY' \
-d '{
"access": {
"accounts": [],
"balances": [],
"transactions": []
},
"recurringIndicator": false,
"validUntil": "2019-06-30",
"frequencyPerDay": 4,
"combinedServiceIndicator": false
}'
https://webapi.developers.erstegroup.com/api/ebc/sandbox/v1netapi/auth
?redirect_uri=REDIRECT_URI
&client_id=CLIENT_ID
&response_type=code
&access_type=offline
&state=loremipsum
&code_challenge=loremipsum
&code_challenge_method=S256
&scope=AIS:CONSENT_ID%20openid%20offline_access
curl -X POST \
https://webapi.developers.erstegroup.com/api/ebc/sandbox/v1/netapi/token \
-H 'Content-Type: application/x-www-form-urlencoded'
-d 'redirect_uri=REDIRECT_URI&client_id=CLIENT_ID&client_secret=CLIENT_SECRET&grant_type=authorization_code&code_verifier=loremipsum&code=AUTHORIZATION_CODE'