Russian Post Logistics Integration into 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
Russian Post Logistics Integration into Mobile App
Medium
~3-5 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

Russian Post Logistics Services Integration into Mobile Application

Russian Post provides REST API for shipment tracking, tariff calculation, creating delivery orders, and generating labels. Documentation exists, but working with it requires understanding several non-obvious limitations.

Russian Post API: What's Available

Official developer portal—otpravka.pochta.ru. Two main sections:

Shipment (Shipment API): creating orders, forming batches, generating PDF labels, calculating delivery cost. Requires contract with Russian Post and token issued through personal account.

Tracking (Tracking API): tracking shipments by track number. Available in two modes—Single (one request per track number, 100 requests/day limit) and Batch (up to 3000 track numbers per request, requires separate agreement).

Authorization and Common Errors

Authorization via Basic Auth: Authorization: Basic base64(login:password) plus header X-User-Authorization: Basic base64(token). Two different headers—first thing people stumble on. Token from personal account—not user password.

Tariff calculation (POST /1.0/tariff) accepts object-type (parcel, letter, small packet), weight in grams, sender and recipient postal codes. Returns cost in kopecks—divide by 100. Without unit conversion, app shows price 100x higher.

Address data. API requires postal codes in FIAS or Russian Post directory format. Arbitrary address "Lenin St, 5" not understood—need prior normalization via address suggestion service.

Implementing Tracking in Mobile App

Tracking—most popular function. Request to get statuses:

POST https://tracking.russianpost.ru/rtm34?wsdl

Important: Tracking API works via SOAP, not REST. For mobile app, wrap in backend proxy—parsing SOAP on device is cumbersome, simpler to return clean JSON to client.

List of operations (statuses) for one shipment may contain 20+ records. On screen show last status and brief history. Operation codes public, but decryption—in separate reference on developer portal.

Background Status Updates

Refresh tracking not on user request but in background: iOS—BGAppRefreshTask, Android—WorkManager with PeriodicWorkRequest interval minimum 15 minutes. On status change, send local push notification.

Cache track number list and last statuses locally—user should see data even offline.

Label Generation

If app used for shipping (e-commerce, marketplace), need full cycle: create order → form batch → request label (PDF, format F7 or F7p). Print label on thermal printer via Bluetooth—iOS uses UIPrintInteractionController, Android PrintManager. Integration with Zebra or Honeywell printers via their SDK adds 2-3 days.

Timeline: tracking integration—5-7 days. Full shipping cycle with label generation—2-3 weeks.