OPay iOS SDK


All payment solutions offered by OPay readily available in your clients' hands.

Prerequisites


OPay SDK will allow your iOS application to:

  • Launch full-screen activities to collect payment details, shipping address, and shipping method.
  • Accept card, reference code, installment payment readily available from OPay.

Note

Note

Make sure you have an active OPay merchant account, or create account.


To avoid any conflicts and have a seamless integration, make sure you have the following compatibility list satisfied.


Xcode version Objective C Version iOS Version
11.0 and above
From 2.0 iOS 9 and above

How iOS SDK Plugin Looks Like


How iOS SDK Plugin Looks Like step one
How iOS SDK Plugin Looks Like step two
How iOS SDK Plugin Looks Like step three

Download and test OPay demonstrative application.



How it works


...

On this page we will walk you through iOS SDK integration steps:

  1. Initialize and configure iOS SDK.
  2. Present payment options and collect you client's payment data.
  3. OPay iOS SDK plugin will send payment request to OPay.
  4. Return payment processing information to our iOS SDK plugin.
  5. Within your iOS application, inform your client with the payment result.

SDK Integration


Please follow the below steps in order to get the SDK integrated and ready for use within your application logic:

  1. Download OPay iOS SDK.

  2. Extract the downloaded framework file and copy to your project folder and include it within you build phases settings.
  3. Android Copy Lib

  4. Import the main header file:
  5.                         
                                    #import <OpayBusinessFramework/OpayBusinessFramework.h>
                            
                        

SDK API hooks


After integrating OPay SDK, now it's time to know how to use our SDK API hooks to:

  1. Create payment order.
  2. Handling payment result.
  3. Order status query.

Create Payment Order


Your app cart item should implement dictionary data, the below table illustrates the values that should be passed through your dictionary object.


Parameter type Required Description
publickey String required Your OPay merchant account public key.
merchantId String required Your OPay account merchant ID.
merchantName String required Merchant Name to be displayed in cashier checkout form.
reference String required Payment reference number in your system.
countryCode String required Country code (NG).
currency String required Currency type (NGN).
payAmount Long required payment total amount.
productName String required Name of Product/Service to be purchased.
productDescription String required Description of Product/Service to be purchased.
callbackUrl String optional If you have sent callbackUrl through API, OPay will send callback notification to this callbackUrl. If you didn't send callbackUrl through API, you need to configure webhook url on the merchant dashboard, and OPay will send callback notification to this webhook url. See callback here
expireAt Integer required Payment expiration time in minutes.
payMethod String optional The preferred payment method to be presented to your customer. See available options here. If not set, all supported payment methods will be available to your customer to choose from.
userInfo
JSON Object
userId String optional the customer user id
userName String optional the customer user name
userMobile String optional the customer user mobile
userEmail String optional the customer user email

Create dictionary data as below.


                
                    NSDictionary *dic=@{
                        @"merchantName": merchantName,
                        @"country": country,
                        @"reference": reference,
                        @"amount": @{
                            @"total": payAmount,
                            @"currency": currency
                        },
                        @"product": @{
                            @"name": productName,
                            @"description": productDescription
                        },
                        @"callbackUrl": callbackUrl,
                        @"userClientIP":userClientIP,
                        @"expireAt":@([expireAt integerValue])
                        @"userInfo": @{
                            @"userId":userId,
                            @"userName":userName,
                            @"userMobile":userMobile,
                            @"userEmail":userEmail
                        }
                    };
                
            

Now, you need to initialize the management class. Code example as follows:

                                
                                    [[[OpayOrderRequestManager instance]registerApp:publickey MerchantId:merchantId isDebug:_isDebug]
                                
                            
                                
                                    OpayOrderRequestManager.instance().registerApp(publicKey, merchantId: merchantId, isDebug: isDebug)
                                
                            

Error

Error

Publickey is the applied public key, merchantId is the assigned merchant ID

isDebug: set to yes to switch to the sandbox environment. Set to No to switch to the production environment

Once you have initialized the management class, you need to call the OpayOrderRequestManager management class to start creating an order. You may follow the following sample code.

                                
                                    [[OpayOrderRequestManager instance] sendOrder:dic successHandler:^(id  _Nonnull result) {
                                        //Success callback
                                    } errorHandler:^(NSString * _Nonnull code, NSString * _Nonnull msg) {
                                        //error message callback
                                    } failHandler:^{
                                        //failed callback
                                    }];
                                
                            
                                
                                    OpayOrderRequestManager.instance().sendOrder(dic, successHandler: { (result) in
                                        //success callback
                                    }, errorHandler: { (code, msg) in
                                        //error callback
                                    }) {
                                        //failed callback
                                    }
                                
                            

failHandler: Handle the logic for the callback after the service fails to be called.

successHandler: For the callback after the service is called successfully, the callback parameter result is the result returned by the calling service. The type is a dictionary and contains order information. Sample response is given below:


                    
                        {
                            "code": "00000",
                            "data": {
                                "amount": {
                                    "currency": "NGN",
                                    "total": 1000
                                },
                                "cashierUrl": "https://sandboxcashier.opaycheckout.com/checkout-list?orderNo=211026140930379662&merchantId=256612345678901&country=NG&rc=false",
                                "orderNo": "211026140930379662",
                                "reference": "12347544444555666llljhh",
                                "status": "INITIAL",
                                "vat": {
                                    "currency": "NGN",
                                    "total": 0
                                }
                            },
                            "message": "SUCCESSFUL"
                        }
                    
                

Depending on the status code of the response, you should build some logic to handle any errors that a request or the system may return. A list of possible potential error codes that you may receive can be found below.


Error Code Error Message
02000 Authentication failed.
02001 The request parameters are invalid.
02002 The merchant has not configured this feature.
02003 Payment method not support.
02004 Order already exists.
02007 Merchant unavailable.
50003 The service is unavailable, please try again.

Handling Payment Result


Once the payment has been completed by your client, OPay server will respond back to the SDK to let you know the payment processing result. After your client completes the payment, you will get the payment processing result in the form of Json object :

Sample response Json object.

                    
                        {
                            "callbackName": "clickReferenceCodeReturnBtn",
                            "eventName": "clickReferenceCodeReturnBtn",
                            "merchantId": "256612345678901",
                            "orderNo": "211026140930379662",
                            "orderStatus": "PENDING", // INITIAL - SUCCESS - FAIL - CLOSE
                            "payNo": "211026140930379662",
                            "referenceCode": "607943772"
                        }
                    
                

Note

Note

Due to network and any other issues, the order status may not be timely. It is highly recommended to call order status inquiry to ensure the accuracy.

Order Query Status


Due to network and any other issues, the order status may not be timely. It is highly recommended to call order status inquiry to ensure the integrity of your data. To that end, You will need to create a dictionary that contains the following request parameters:


Parameter type Required Description
privateKey String required Your OPay merchant account public key.
merchantId String required Your OPay account merchant ID.
reference String required (if no orderNo provide) Payment reference number in your system.
orderNo String required (if no reference provide) Order id.
countryCode String required Country code (NG).
Error

Error

You can only pass one of the reference and orderNo keys.


                    
                        NSDictionary *dic=@{
                            @"country": countryCode,
                            @"reference": reference,
                            @"orderNo":orderNo
                        };

                    
                

After creating the query dictionary, you need to initialize the managemnt class as follows:

                                
                                    [[[OpayOrderRequestManager instance]registerApp: privateKey MerchantId:merchantId isDebug:_isDebug]
                                
                            
                                
                                    OpayOrderRequestManager.instance().registerApp(privateKey, merchantId: merchantId, isDebug: isDebug)
                                
                            

Now, you need to :

                                
                                    [OpayOrderRequestManager instance] queryOrder:dic successHandler:^(NSString * _Nonnull code, NSString * _Nonnull errorMsg, id  _Nonnull result) {

                                    } failHandler:^{

                                    }];
                                
                            
                                
                                    OpayOrderRequestManager.instance().queryOrder(dic, successHandler: { (result) in

                                    }) {

                                    }
                                
                            

failHandler: Handle the logic for the callback after the service fails to be called.

successHandler: For the callback after the service is called successfully, the callback parameter result is the result returned by the calling service. The type is a dictionary and contains order status information. Sample response is given below:

                    
                        {
                            "code": "00000",
                            "message": "SUCCESSFUL",
                            "data":{
                                "reference":"1001000",
                                "orderNo":"10212100000034000",
                                "status":"SUCCESS",
                                "vat":{
                                  "total":10000,
                                  "currency":"NGN",
                                  "rate":100,
                                  "currencySymbo":"₦"
                                },
                                "failureReason":null,
                                "silence":"Y"
                            }
                        }
                    
                

Depending on the status code of the response, you should build some logic to handle any errors that a request or the system may return. A list of possible potential error codes that you may receive can be found below.


Error Code Error Message
02000 Authentication failed.
02001 The request parameters are invalid.
02002 The merchant has not configured this feature.
02006 Order not found.
02007 Merchant unavailable.
50003 The service is unavailable, please try again.

User Profile 12 messages

James Jones
Application Developer
Recent Notifications
Another purpose persuade Due in 2 Days
+28%
Would be to people Due in 2 Days
+50%
-27%
The best product Due in 2 Days
+8%