Displaying Device Information Flow for iOS
casan221saas
The Displaying Device Information flow takes place when a user displays device information on the app.
This section covers the following topics:
For information about the APIs mentioned in these topics, see API Reference for iOS.
Steps in the Displaying Device Information Flow
The following steps take place when the user displays device information on the app
:- 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 Device Info option.

- The app displays the accounts.
Displaying Device Information Flow Diagram
The following flow diagram shows the sequence of API calls that take place during the Displaying Device Information flow.
iOS - Displaying Device Info

Sample Code for the Displaying Device Information Flow
The following is sample code for displaying device information:
AuthenticationHandler * authHandler = [[AuthenticationHandler alloc] init]; ProfileInfo * profileInfo = [authHandler getProfileInfo]; if([[profileInfo status] isEqualToString:SUCCESS]) { //App displays Device info to user } else { //Device info is not available }