Step 6: Receive payment
  • 25 Feb 2025
  • 7 Minutes to read
  • Dark
    Light

Step 6: Receive payment

  • Dark
    Light

Article summary

Integration Details

⚠️ Note that steps 4 - 6 are exclusive to the payment page and are not required if working on a non-payment page. If you are working on a non-payment page integration, please move to the Enable User Interface Section to display the offers to your customers.

Once, the user has goes through the Uplift application through the iFrame, there are two potential outcomes:

  1. Adverse action (the user has not been approved), in such a case:
    1. The iFrame will display a message to the user suggesting completing the purchase with an alternate payment method.
    2. The payment selector will remain enabled, however the user will be unable to continue with the Uplift application.
    3. The callback handler will not trigger a status change and it will remain as OFFER_AVAILABLE. Due to compliance reasons we are unable to share the specific status of the loan application. An example of an adverse action on the iFrame will look like the image below.

      DP-17

      Note: In the image above, for travel partners, if an applicant is declined then they will be prompted with a button to start a fresh application for a new user.

  2. Successful application (the user has been approved), in such a case:
    1. The callback handler will fire a TOKEN_AVAILABLE status signaling that a token object (containing the details of Uplift virtual card similar to any bank card) is available for the merchant to process your payment.

      ⚠️ Make sure to obtain the available token ONLY AFTER the user clicks on the booking/purchase button on your website.

      In order to retrieve the token, you will need to call the window.Uplift.Payments.getToken() method. This method does not take any parameter and makes a request to the Uplift platform to send the token object.

      Uplift and Non Uplift Payments

      Even if Uplift is not selected as payment method, after the user clicks on the booking/purchase button is necessary to execute the orderSubmit method from the Uplift Analytics library as shown below.

      The Uplift.Analytics.orderSubmit(order_info: orderInfo, data: data) method takes two parameters:

      1. An OrderInfo object identical to the one used in Step 3 of the API Integration. Refer to this page for information on the complete schema for the OrderInfo object.
      2. A data object as shown below:
        {
          //user’s mode of payment
          "mode_of_payment": String,
          //user’s available payment options
          "payment_options": [String]
        };
        
      Example of allowed values for mode_of_payment and payment_options

      'full', 'pay monthly', 'deposit', 'hold', 'other'.

    2. Once the token has been sent by Uplift, the callback handler will fire a TOKEN_RETRIEVED status with the token as an attribute of the response. This token object can then be used to process payment similar to any other bank card.

      📘 Detailed attributes of the token and how to get paid using it can be found here.
      ⚠️ Please review the Response Reason Code details if the token value is NULL.

      How to correctly retrieve the billing contact information?

      ⚠️Please make sure to use the data under the token.contact object instead of any other billing information provided by the user.

    Below is an example of the updated callback handler with the above mentioned changes.

    function myOnChangeCallback(response) {
      var statusHandlers = {
        OFFER_AVAILABLE: function(){
          //Uplift Pay Monthly Offer available for this customer.
        },
        TOKEN_AVAILABLE: function(){
          //Uplift application has been completed and ready to pay in full.
          //Retrieve the token ONLY AFTER Purchase/Book button is clicked.
          window.Uplift.Payments.getToken();
        },
        TOKEN_RETRIEVED: function(){
          //Uplift Payment Token successfully retrieved.
          var token = response.token;
          //process payment using token (uplift virtual card).
        },
        OFFER_UNAVAILABLE: function(){
         //Uplift Pay Monthly Offer is not available for this customer.
        },
        SERVICE_UNAVAILABLE: function(){
          //Uplift Payments Service is unavailable.
        }
      };
      statusHandlers[response.status]();
    }
    

Error Reporting

⚠️ Exclusive for Uplift transactions

If an error occurred while processing payment with the Uplift token that prevented a user from successfully booking or completing a purchase, please report it to Uplift using the error method.

window.Uplift.Payments.error(errorMsg: String, errorType: String)

This method has two parameters, errorMsg representing the message shown to the user and errorType which has three possible values (validation, booking, fatal) corresponding to the type of error.

Some of the examples of the possible scenarios for each value is:

  1. validation - due to a field being incorrectly used resulting in the system being unable to process payment e.g. incorrect usage of expiration month etc.
  2. booking - due to an error between the user confirming purchase and processing payment e.g. inventory no longer available, payment provider is down etc.
  3. fatal - due to an error not mentioned above resulting in customer being unable to book e.g. partner site server timed out etc.

Reporting errors will help Uplift improve and better serve our mutual customers.

Processing Confirmation

For the confirmation process, two steps are needed. The first one is necessary for all the payment methods, but the second one is only required for the Uplift payment.

⚠️ IMPORTANT

The following functions should ONLY be executed on the Confirmation Page.

1. Uplift and Non Uplift Payments
Use the Uplift Analytics orderResponse method to send the order_id and the payment method selected: Uplift.Analytics.orderResponse(data)

The data object should be defined as shown below:

{
  //user’s mode of payment
  "mode_of_payment": String,
  //pass the confirmation number
  "order_id": String
};

Allowed values for mode_of_payment

'full', 'pay monthly', 'deposit', 'hold', 'other'.

Example

Uplift.Analytics.orderResponse({
  "mode_of_payment": "pay monthly",
  "order_id": "ConfirmationID123"
})
⚠️ IMPORTANT

Note the "ConfirmationID123" in the sample code above represents the unique confirmation created by your internal systems.



2. Uplift Payment

The confirm function should be ONLY executed for Uplift transactions. If the transaction was successfully processed using the Uplift token, the partner confirmation number needs to be sent to Uplift using the predefined method shown below.

window.Uplift.Payments.confirm(order_id: String)

This method informs Uplift that the booking was successful and allows us to provide a better customer experience for our mutual customers, in case they call Uplift.

Example

step6-confirm-example

window.Uplift.Payments.confirm("616783a0")


📘 Since certain partners provide confirmation on the same payment page, while others have a separate confirmation page, before sending the confirmation number, please validate that you have already loaded the up.js code, defined the window.upReady and initialized the library using initPayMonthly for a non-payment page as explained in step 2.

⚠️ Please reivew the Purchase Button page for a detailed view of the expected behavior.

📌 Before launching Uplift on your Production site, please make sure to:

  1. Ensure the checkout page and payment behavior meets the requirements outlined in the Payment Status page
  2. Ensure you have reviewed and completed the QA Checklist
Step-by-step Validation Guide (Recommended)
  1. In order to receive and store the Uplift token, which includes the virtual card information, as a variable, you need to update the callback handler defined in Example Step 4 as shown below.
    function myOnChangeCallback(response) {
      console.log('myOnChangeCallback is working!');
      var statusHandlers = {
        OFFER_AVAILABLE: function () {
          //Uplift Pay Monthly Offer available for this customer.
          console.log('There is an offer available for you!');
        },
        TOKEN_AVAILABLE: function () {
          //Uplift application has been completed and ready to pay in full.
          //Retrieve the token ONLY AFTER Purchase/Book button is clicked.
          console.log('getToken');
          window.Uplift.Payments.getToken();
        },
        TOKEN_RETRIEVED: function () {
          //Uplift Payment Token successfully retrieved.
          var token = response.token;
          console.log('This is your token', token);
          //process payment using token (uplift virtual card).
        },
        OFFER_UNAVAILABLE: function () {
          //Uplift Pay Monthly Offer is not available for this customer.
          console.log('Sorry! The offer is unavailable...');
        },
        SERVICE_UNAVAILABLE: function () {
          //Uplift Payments Service is unavailable.
          console.log('Sorry! The Uplift service is unavailable...');
        },
      };
      statusHandlers[response.status]();
    }
    
  2. Then refresh the page and call window.Uplift.Payments.select() from the console, you should once again see the Uplift application iFrame, then continue to test the iFrame using the provided testing profiles. For this following example make sure to use the approved outcome. On successful completion of application, you should end at the following screen.

    DP-17B

  3. Now, the updated callback handler should have sent a request for the token (Uplift virtual card) which when received will be logged on your browser developer tool’s console as shown below.

    DP-18

    ⚠️ Once you retrieve the token and have the virtual card information available as seen in the image above, you must then charge the virtual card as you would any other credit card in order to complete the transaction and process the payment in full.

  4. On successfully processing the payment using the Uplift token, the partner confirmation number should be sent to Uplift using the following methods with the example confirmation id as shown below.
    Uplift.Analytics.orderResponse({
      "mode_of_payment": "pay monthly",
      "order_id": "ConfirmationID123"
    })
    
    window.Uplift.Payments.confirm("ConfirmationID123")
    

Note the "ConfirmationID123" in the sample code above represents the unique confirmation created by your internal systems. Sharing this with Uplift will allow us to support our shared customers' better with any inqueries they might have.

🎉 You have now successfully implemented the Uplift API. Move on to the next section to integrate user interface messaging to display payment selectors and Uplift’s offerings and application to your customers.

⚠️Now that you have completed the example integration do not forget to update your UP-code to use the Production code and remove any unnecessary console logs that were used for development.

📌 Before launching Uplift on your Production site, please make sure to:

  1. Ensure the checkout page and payment behavior meets the requirements outlined in the Payment Status page
  2. Ensure you have reviewed and completed the QA Checklist

Was this article helpful?