Electronic Document Management System 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
Electronic Document Management System Integration in Mobile App
Complex
from 1 week to 3 months
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    761
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    649
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1071
  • 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
    884
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    466

Electronic Document Management System Integration into Mobile Application

Approve contract via mobile app, sign work acceptance report on tablet right at site, send primary documents to accounting without paper. EDM integration into mobile product—not just API requests: electronic signature, cryptography, legal document significance, Russian regulatory field specifics.

EDM Ecosystem in Russia

Main operators to integrate with:

Operator API FTA Accreditation Features
Diadoc (Kontur) REST API Yes Most widespread, good docs
SFERA Courier (SKB Kontur) REST API Yes Focus on logistics docs
1C-EDM No public API Yes Only via 1C gateway
Tinkoff EDM REST API Yes Newer, docs developing
EDO Lite (Tensor, SBIS) REST API Yes SBIS ecosystem integration

For new projects, Diadoc most popular—most complete API, large client base, good documentation at developer.diadoc.ru.

Electronic Signature: Critical Point

Legally significant EDM requires qualified electronic signature (QES) or non-qualified (NES) depending on document type. Key distinction from "just press Sign" in interface.

Mobile device signature implementation—several methods:

1. Cloud Signature (recommended for mobile). QES stored in secure operator or certification center storage. App requests signing via API—user confirms via SMS code or push notification. Private key never leaves cloud. Diadoc provides cloud signature via Kontur.Crypto.

This is the right path for mobile. Storing QES private key on mobile—legally risky and technically complex.

2. Token/Smart Card. USB token connection (Rutoken, eToken) via Lightning/USB-C adapter—exotic for mobile, but happens in industrial scenarios. Requires manufacturer SDK and MFi support.

3. Simple Electronic Signature (SES). For internal EDM (company agreement not requiring QES)—use SES, basically authorized user action logged in system. Lower legal force, sufficient for internal circulation.

Diadoc API Integration

Authorization—OAuth 2.0 with client credentials or via Kontur.ID. For mobile app, use Authorization Code Flow:

GET https://auth.kontur.ru/api/authorization/v5.7/oauth/login
    ?client_id={client_id}
    &response_type=code
    &redirect_uri=myapp://auth/callback
    &scope=diadoc

After getting code, exchange for access_token. Token has limited lifetime—implement automatic refresh via refresh_token.

Get documents:

GET https://diadoc-api.kontur.ru/V3/GetDocuments
    ?boxId={boxId}&filterCategory=Any.Incoming
Authorization: DiadocAuth ddauth_api_client_id={client_id},ddauth_token={token}

Response—XML or JSON depending on Accept header. For mobile, JSON preferable.

Document Work on Device

PDF View. Diadoc returns documents in PDF or TIFF format (for formalized—XML). On iOS render PDF via PDFKit (built-in since iOS 11), TIFF via UIImage. Android—PdfRenderer or AndroidPdfViewer library. For XML formalized documents (Universal Transfer Document, invoice), need XSLT-template rendering—Diadoc provides print forms via API.

Signing. With cloud signature: POST /V3/PostSignatures with DocumentId and user confirmation. API returns signing status asynchronously—need polling or webhook.

Create Outgoing Document. For non-formalized: user attaches PDF/DOCX from filesystem (UIDocumentPickerViewController / ACTION_OPEN_DOCUMENT), we make POST /V3/PostMessagePatch with base64-encoded file content and metadata.

Formalized Documents (UTD, TORG-12, Acts)

Separate story. Formalized documents—XML per FTA formats (orders MMV-7-15/820@, ED-7-26/736@). Can't just attach as file—must generate XML from data per format. Diadoc provides XML generator via POST /GenerateTorg12XmlForSeller, POST /GenerateUniversalTransferDocumentXmlForSeller and similar.

On mobile, usually user doesn't create UTD from scratch—they approve or sign already-created. Formalized document creation better on web or in ERP.

Notifications on New Documents

Push on incoming document for approval—key feature for working EDM app. Diadoc supports webhooks (POST /V3/Subscriptions): on event, system POSTs to your endpoint, server sends FCM/APNs push.

Mobile processing: push click opens documents list filtered "needs action".

Offline and Caching

Cache documents locally—user can view already-loaded without internet. For sensitive data—encrypt cache via iOS Data Protection (class NSFileProtectionComplete) or Android Keystore + AES-256. Document list stored in Core Data / Room with network sync.

Implementation Process

  1. Requirements audit: which document types, which signature (QES/NES/SES), which EDM operator already used in company
  2. Signature method selection: cloud signature—only reasonable option for mobile users without corporate MDM
  3. Integration prototype: EDM operator test environment, basic requests
  4. Development: authorization, document list, viewing, signing
  5. Testing: legal scenarios must check with EDM operator
  6. Security audit: token storage, cache encryption, interception protection

Timeline depends on complexity: viewing and approval without document creation—3-4 weeks. Full cycle with creation, signing, cloud QES integration—2-3 months. Formalized documents work adds 2-4 more weeks.