Karta Pokupok Installment Integration in Mobile App

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
Karta Pokupok Installment Integration in Mobile App
Medium
~2-3 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1054
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Karta Pokupok Installment Integration in Mobile Application

"Karta Pokupok" is a Belarusian installment product which stores add to increase average check. Unlike Russian Halva, there is no separate mobile app from issuer — flow is entirely via WebView form and server API.

How Flow Works

User selects "Pay with Installment" → your server creates application via Karta Pokupok API, gets payment form URL → mobile app opens URL in SFSafariViewController (iOS) / Custom Tabs (Android) → user enters card details and confirms → redirect to successUrl/failUrl → webhook to your server about final status.

Nuance: Karta Pokupok form uses OTP confirmation via SMS. In SFSafariViewController SMS AutoFill (iOS 12+) works natively — Safari offers to insert code from message. In regular WKWebView this also works with proper contentType = .oneTimeCode in form. Make sure not blocking JavaScript in WebView.

Calculation and Display of Terms

API provides installment calculation endpoint: send amount, get available periods (3, 6, 12 months) and monthly payment. Display before opening form — user must see terms before clicking button.

Example response: {"periods": [{"months": 6, "monthly": 83.33}, {"months": 12, "monthly": 41.67}]}. Show as horizontal list with period selection chips — standard UX for BNPL products.

Status Handling

Karta Pokupok returns three final statuses: approved, rejected, cancelled. rejected — bank denied installment — show message with card payment offer. Don't write "error" — write "Bank denied installment. You can pay by card". Difference in conversion is noticeable.

Callback via returnUrl handled in AppDelegate/Application by URL scheme. In parallel — webhook to server. Get status from webhook, not from returnUrl query parameters (can be faked).

Typical Implementation Mistakes

Plain WKWebView instead of SFSafariViewController. In WKWebView no access to system Safari cookies. If Karta Pokupok uses cookie-based session on its form, user each time will go through authorization anew. SFSafariViewController solves this — it shares cookie storage with Safari.

Not handling application timeout. Installment application active for limited time (usually 15–30 minutes). If user left form screen and returned in hour — show "Session time expired, try again" instead of hanging spinner.

No retry on temporary API unavailability. Application creation — critical request. On 503/504 from Karta Pokupok server — Exponential Backoff with three attempts before showing error to user.

Process

Partner contract activation → test credentials → server module (application creation, webhook) → mobile part (WebView flow, deeplink handling) → testing with test card data → production.

Timeline Estimates

2–3 days from API key receipt. Organizational part (partner contract) — out of development estimate.