Load a transaction from the server
Thursday, March 29, 2018 at 06:57amIn iOS SDK there’s a function to “load a transaction from the serverâ€, the syntax is like:
eSignLive.dashboard().startESignCeremonyForTransaction(withGUID: “â€)
As the packages are created on server side, can we take this way in our app? If yes, what steps and information we need to prepare first?
Reply to: Load a transaction from the server
Thursday, March 29, 2018 at 08:38am- (void)loginWithEmail:(NSString *)aEmail password:(NSString *)aPassword andCallback:(void (^)(NSDictionary *response))aCallback;login with session token: 4- The root ViewController on which the SDK is going to render it's UI should be set on the SDK. you can set this property from your project's ViewController. 5- The transaction ID (GUID) is needed to be passed to the method.Reply to: Load a transaction from the server
Thursday, March 29, 2018 at 10:51am