To initiate a payment, your app will need to send transactional information to the Checkout Pro SDK. To pass this information, build a payment parameter object as
TransactionId can't have special character and not more than 25 characters.
let paymentParam =PayUPaymentParam(key:<#T##String#>, transactionId:<#T##String#>, amount:<#T##String#>, productInfo:<#T##String#>, firstName:<#T##String#>, email:<#T##String#>, phone:<#T##String#>, surl:<#T##String#>, furl:<#T##String#>, environment:<#T##Environment#>/*.production or .test*/)paymentParam.userCredential =<#T##String#>// For saving and fetching user’s saved card
If you are integrating SI, then create an object of SIParam as mentioned here.
After creating an object, pass the object as below:
paymentParam.siParams = siParam
paymentParam.siParams = siParam;
Payment parameter definition
Additional Params:
Additional params are optional params that can be passed to SDK like udf params, static hashes. More details on static hash generation and passing is mentioned in hash generation section. Below is list of params that can be passed in additional params -
Confirm to PayUCheckoutProDelegate and use these functions to get appropriate callbacks from the SDK:
/// This function is called when we successfully process the payment/// - Parameter response: success responsefunconPaymentSuccess(response: Any?) {}/// This function is called when we get failure while processing the payment/// - Parameter response: failure responsefunconPaymentFailure(response: Any?) {}/// This function is called when the user cancel’s the transaction/// - Parameter isTxnInitiated: tells whether payment cancelled after reaching bankPagefunconPaymentCancel(isTxnInitiated: Bool) {}/// This function is called when we encounter some error while fetching payment options or there is some validation error
/// - Parameter error: This contains error informationfunconError(_error: Error?) {}/// Use this function to provide hashes/// - Parameters:/// - param: Dictionary that contains key as HashConstant.hashName & HashConstant.hashString/// - onCompletion: Once you fetch the hash from server, pass that hash with key as param[HashConstant.hashName]funcgenerateHash(forparam: DictOfString, onCompletion: @escaping PayUHashGenerationCompletion) { // Send this string to your backend and append the salt at the end and send the sha512 back to us, do not calculate the hash at your client side, for security is reasons, hash has to be calculated at the server side
let hashStringWithoutSalt = param[HashConstant.hashString]??"" // Or you can send below string hashName to your backend and send the sha512 back to us, do not calculate the hash at your client side, for security is reasons, hash has to be calculated at the server side
let hashName = param[HashConstant.hashName]??""// Set the hash in below string which is fetched from your serverlet hashFetchedFromServer =<#T##String#>onCompletion([hashName : hashFetchedFromServer])}
/// This function is called when we successfully process the payment
/// @param response success response
- (void)onPaymentSuccessWithResponse:(id _Nullable)response {
}
/// This function is called when we get failure while processing the payment
/// @param response failure response
- (void)onPaymentFailureWithResponse:(id _Nullable)response {
}
/// This function is called when the user cancel’s the transaction
/// @param isTxnInitiated tells whether payment cancelled after reaching bankPage
- (void)onPaymentCancelWithIsTxnInitiated:(BOOL)isTxnInitiated {
}
/// This function is called when we encounter some error while fetching payment options or there is some validation error
/// @param error This contains error information
- (void)onError:(NSError * _Nullable)error {
}
/// Use this function to provide hashes
/// @param param NSDictionary that contains key as HashConstant.hashName & HashConstant.hashString
/// @param onCompletion Once you fetch the hash from server, pass that hash with key as param[HashConstant.hashName]
- (void)generateHashFor:(NSDictionary<NSString *, NSString *> * _Nonnull)param onCompletion:(void (^ _Nonnull)(NSDictionary<NSString *, NSString *> * _Nonnull))onCompletion {
// Send below string hashStringWithoutSalt to your backend and append the salt at the end and send the sha512 back to us, do not calculate the hash at your client side, for security is reasons, hash has to be calculated at the server side
NSString *hashStringWithoutSalt = [param objectForKey:HashConstant.hashString];
// Or you can send below string hashName to your backend and send the sha512 back to us, do not calculate the hash at your client side, for security is reasons, hash has to be calculated at the server side
NSString * hashName = [param objectForKey:HashConstant.hashName];
// Set the hash in below string which is fetched from your server
NSString *hashFetchedFromServer = <#(NSString)#>;
NSDictionary *hashResponseDict = [NSDictionary dictionaryWithObjectsAndKeys:hashFetchedFromServer, hashName, nil];
onCompletion(hashResponseDict);
}
For UPI Intent (Optional Step)
Currently we support only PhonePe and GooglePay via Intent. Add the query schemes in info.plist
Distributing your app (App Store / Ad-hoc) (Mandatory Step)
What you get by default is a fat framework that allows you to test your app seamlessly on device as well as simulator. But before archiving your app, you need to remove simulator slices from the framework. Please see the doc which assists in archiving your app with PayUChekoutPro integrated.
Can not be null or empty and should be unique for each transaction. It can not contain special characters like :-_/
Yes
Amount
String
Total transaction amount
Can not be null or empty and should be valid double stringified eg, “100.0”
Yes
Product info
String
Information about product
Can not be null or empty and should be less than 100 Characters.
Yes
First Name
String
Customer’s first name
Can not be null or empty
Yes
Email
String
Customer’s email id
Can not be null or empty
Yes
Phone
String
Customer’s phone number
Should be a valid phone number
Yes
SURL
String
When the transaction is successful, PayU will load this url and pass transaction response
Should be a valid URL
Yes
FURL
String
When the transaction is a failure, PayU will load this url and pass transaction response
Should be a valid URL
Yes
Environment
Environment
Environment of SDK
Should be either
Swift: Environment.production or Environment.test
ObjectiveC: EnvironmentProduction or EnvironmentTest
Yes
User Credential
String
This is used for the store card feature. PayU will store cards corresponding to passed user credentials and similarly, user credentials will be used to access previously saved cards
Should be a unique value
Format : <merchantKey>:<userId>
Here,
UserId is any id/email/phone number to uniquely identify the user