On This Page 
    Setting Up the Initial Request
    Requesting the 
cardinal session setup
 process begins the communication process,
                authenticates your credentials (server JWT), and completes the data collection
                process. By the time the customer is ready to check out, all necessary preprocessing
                is complete. Each time a user begins a mobile transaction, a unique value is assigned to the
                     uses its
                     can also track the requests for each user
                session.
consumerSessionId
 API field to identify the session. This
                value ensures that the correct device data collection results are matched to each
                user request. Barclays
payerAuthEnrollService_referenceID
 field to contain
                Cardinal's consumerSessionId
 value. You must assign the value of
                the consumerSessionId
 field to the
                    payerAuthEnrollService_referenceID
 field so that Barclays
Study these code examples to understand how to complete setting up the cardinal
                session process. The function request must be placed in your Checkout
                ViewController.
Cardinal session setup (iOS SDK - Objective-C)
NSString *accountNumberString = @"1234567890123456"; NSString *jwtString = @"INSERT_YOUR_JWT_HERE"; [session setupWithJWT:jwtString didComplete:^(NSString * _Nonnull consumerSessionId){ // // You may have your Submit button disabled on page load. Once you are // setup for CCA, you may then enable it. This will prevent users // from submitting their order before CCA is ready. // } didValidate:^(CardinalResponse * _Nonnull validateResponse) { // Handle failed setup // If there was an error with setup, cardinal will call this // function with validate response and empty serverJWT }];
Cardinal session setup (iOS SDK - Swift)
let accountNumberString = "1234567890123456" let jwtString = "INSERT_YOUR_JWT_HERE" session.setup(jwtString: jwtString, completed: { (consumerSessionId: String) in // // You may have your Submit button disabled on page load. Once you // are setup for CCA, you may then enable it. This will prevent // users from submitting their order before CCA is ready. // }) { (validateResponse: CardinalResponse) in // Handle failed setup // If there was an error with setup, cardinal will call this // function with validate response and empty serverJWT }