PayTabs SDK makes the integration with the PayTabs payment gateway very easy by providing a ready-made payment screen that handles the card entry and, billing & shipping information and completes the missing details.


This article is dedicated to walking you through how to perform tokenized/recurring transactions using this SDK. 


To enable tokenization (for recurring or any other services that depend on auto-detection from the customers instead of saving credit card details), please follow the below instructions:

  1. Request a token in creating any payment request by passing the "tokeniseType" along with the "tokenFormat" with the preferred type and format that suits your business needs within your PaymentSDKConfiguration, as shown below.  
    tokeniseType: PayTabsIonic.TokeniseType.merchantMandatory,
    tokenFormat: PayTabsIonic.TokeniseFromat.alphaNum20,


    To know more about these parameters and what are the available values you can pass please check the "2.3 Ionic SDK | Enums" solution article.


  2. Make sure you import PaymentSDKConfiguration class.

  3. Configure the billing & shipping information for this payment, noting that the shipping information is optional. To know more about this, please check our 3.1 Ionic SDK | Manage Shipping and Billing details and 2.1 Ionic SDK | Configuration Options & Parameters solution articles. 
                 

    let billingDetails: PaymentSDKBillingDetails = {
    name: 'John Smith',
    email: '[email protected]',
    phone: '+201111111111',
    addressLine: 'Address line',
    city: 'Dubai',
    state: 'Dubai',
    countryCode: 'AE', //country ISO two characters code
    zip: '1234'
    };

    const shippingDetails: PaymentSDKShippingDetails = {
    name: 'John Smith',
    email: '[email protected]',
    phone: '+201111111111',
    addressLine: 'Address line',
    city: 'Dubai',
    state: 'Dubai',
    countryCode: 'AE', //country ISO two characters code
    zip: '1234'
    };
    Generic


     
  4. Then create an object from PaymentSDKConfiguration and fill it out with your credentials and payment details, don't forget to pass the "tokeniseType" along with the "tokenFormat". To know more about what is the exact values that should be passed here, please check our 2.1 Ionic SDK | Configuration Options & Parameters and 2.2 Ionic SDK | The PaymentSDKConfiguration Object solution articles.          

    let configuration: PaymentSDKConfiguration = {
    profileID: '*profile ID*',
    serverKey: '*server key*',
    clientKey: '*client key*',
    cartID: '12345',
    currency: 'USD',
    cartDescription: 'Flowers',
    merchantCountryCode: 'ae', //2 chars iso country code
    merchantName: 'Flowers Store',
    amount: 20,
    screenTitle:'Pay with Card',
    billingDetails,
    shippingDetails,
    tokeniseType: PayTabsIonic.TokeniseType.merchantMandatory,
    tokenFormat: PayTabsIonic.TokeniseFromat.alphaNum20
      };



  5. Only then you will be ready to start/initiate the payment by passing your PaymentSDKConfiguration object to the startCardPayment function in which you await until the promise (returned response object) is settled to handle/alter the payment response. To know more about this please check our 2.2 Ionic SDK | The PaymentSDKConfiguration Object and Step 5 - Ionic SDK | Handle the payment response solution articles. 

    //note that the await should be used inside an async function or at the top level of a module

    const result = await PayTabsIonic.startCardPayment(configuration);

    this.handleResult(result);
    handleResult(result: any) {
    if (result.status == 'success') {
    // Handle transaction details here.
    const transactionDetails = result.data;
    console.log('responseCode: ' + transactionDetails.paymentResult.responseCode);
    console.log('transactionTime: ' + transactionDetails.paymentResult.transactionTime);
    console.log('responseMessage: ' + transactionDetails.paymentResult.responseMessage);
    console.log('transactionReference: ' + transactionDetails.transactionReference);
    console.log('token: ' + transactionDetails.token);
    } else if (result.status == 'error') {
    // Handle error here the code and message.
    } else if (result.status == 'event') {
    // Handle events here.
    }
    }


  6. After this, you will receive the token along with the transaction reference (that generated this token) within the response objectYou will need to save them for future usage.


  7. Then to perform any further recurring transaction according to your business needs by repeating steps 2 and 3 from this solution article, then directly start the tokenized card payment via the startTokenizedCardPayment function by passing the PaymentSDKConfiguration object along with the token and the transaction reference (saved from the previous step).

    //note that the await should be used inside an async function or at the top level of a module

    const result = await PayTabsIonic.startTokenizedCardPayment(Configuration, token, transactionRef)









⌂ To get familiar with the whole process and the other steps, kindly navigate to our "The Ionic SDK Integration Manual" solution article. 

 And to navigate to the previous step in the integration process "Step 2 - Configure the integration method" click here

 And to get familiar with the rest of the steps regarding the current step "Step 3 - Initiating the payment" click here.

⇨ 
Or you can navigate to the next step in the integration process "Step 4 - Accepting the payment" kindly click here.