Core Resources
Banking Api
Energy Api
Common api
A single-use session for an end-user to authorise data sharing from an institution
Auth Session Endpoints
An object that represents an end user's auth session.
The computed auth URL.
The computed auth URL expires at.
The client id.
Session Id
{
"auth_url": "auth-session.com/redirect-url",
"expires_at": 1213467,
"id": "5qcql2s0bn9qfh1m5qd1sl4gth",
"session_id": "ea564d-56012s4-6ds4564"
}
/v1/auth/session
Create a new Session for the Authentication flow
Your url to cancel an auth flow
The end_user that will be consenting with an external provider
Where the end user will be redirected to on success
curl --request POST \
--url https://api.fiskil.com/v1/auth/session \
--header 'Authorization: Bearer {access_token}' \
--header 'accept: application/json; charset=UTF-8' \
--header 'content-type: application/json; charset=UTF-8' \
--data '
{
"cancel_uri": "https://acme.com/cancel",
"end_user_id": "22325VgWkf6GkW2149t633Bucup",
"redirect_uri": "https://acme.com/success"
}
'
{
"auth_url": "auth-session.com/redirect-url",
"expires_at": 1213467,
"id": "5qcql2s0bn9qfh1m5qd1sl4gth",
"session_id": "ea564d-56012s4-6ds4564"
}
Was this page helpful?