Displaying Accounts Flow for iOS
casan142saas
A user can activate CA Strong Authentication for multiple accounts, such as her savings bank account, credit card account, and debit card account. The SDK provides a way for the user to view these accounts.
The Displaying Accounts flow takes place when a user displays the accounts for which she has activated CA Strong Authentication.
This section covers the following topics:
For information about the APIs mentioned in these topics, see CA Identity Risk Insight
Service 19.2 Wiki.
Steps in the Displaying Accounts Flow
The following steps take place when the user displays the accounts for which she has activated CA Strong Authentication
:- The user opens the app.
- The user taps the menu icon in the upper-left corner.

- The app displays the menu.
- The user taps the Accounts option.
- The app displays the accounts.
Displaying Accounts Flow Diagram
The following flow diagram shows the sequence of API calls that take place when the accounts for which CA Strong Authentication has been activated are displayed on the app.
iOS - Displaying Accounts

Sample Code for the Displaying Accounts Flow
The following is sample code for displaying the accounts for which CA Strong Authentication has been activated:
//Get an object of Handler to call the SDK APIAuthenticationHandler * authHandler = [[AuthenticationHandler alloc] init];NSMutableArray * accountDetails = [authHandler getAllEnrolledAccounts];. . . // Display the accounts by using a UIView, such as TableView. . . .