Save Your loginIds
Flinks issues a unique loginId
for each customer who successfully authenticates through Flinks Connect. It's used in combination with a requestId
to access the financial data for that particular customer. The loginId
for an account doesn't expire and it never changes unless it's deleted. If you need to delete a loginId
, use the /DeleteCard endpoint.
Store each customer's loginId
in a secure location in your servers and never share it publicly.
- Retrieve the loginId that Flinks sends you using one of the following methods:
- (Recommended) Use a JavaScript event listener that contains
step:REDIRECT
:{step: "REDIRECT", institution: "FlinksCapital", url: "https://example.com/thank-you?loginId=8b35f6c8-e7b6-41d3-98f8-08d68b7f8d31&institution=FlinksCapital"}
- Flinks adds the
loginId
andinstitution
to the URL after a successful connection. Retrieve it from here:https://example.com/thank-you?loginId=8b35f6c8-e7b6-41d3-98f8-08d68b7f8d31&institution=FlinksCapital
- (Recommended) Use a JavaScript event listener that contains
- Send the
loginId
to your server app for storage.
Updated 5 months ago