TPN Register
TPN register is used to download the parameters to configure the merchant configuration data from the backend application portal.
Watch This Video for a Visual Walkthrough of the Steps
Input Request Parameters:
Field | Type | Description | Example |
tpn * | string | It’s a Unique 12-digit code. This value is unique for each merchant. | 123456789012 |
applicationType | string | The application type is used to identify the application | IPosGo! |
- To access the SDK Reader wrapper class, import DeepLinking, and initiate an instance of the class as follows:
import DeepLinking
- Create a variable to access the methods
var deepLinkVariable = Wrapper()
- Access
makeARequestBasedOnTPN()ondeepLinkVariable
deepLinkVariable.makeARequestBasedOnTPN(tpnNo: tpn, delegate: self)
- Below snippet helps to make a connection between the iPosGo! and Demo App.
Plain text
func didReceiveResponse(sucess success: URL?) {
if UIApplication.shared.canOpenURL(success!) {
UIApplication.shared.open(success!, options: [:]) { result in
print(result)
}
}
else {
print("App Not Installed in the Device!")
}
}Was this section helpful?
What made this section helpful for you?
What made this section unhelpful for you?
On this page
- TPN Register