Mobbeel for developers

Mobbeel for developers

  • MobbScan
  • MobbID
  • MobbSign
  • Clients
  • FAQ

›Getting Started

MobbScan iOS

  • Welcome to the MobbScan SDK
  • SDK size

Configure SDK

  • Configure the iOS SDK

Migration Guides

  • Migration to 2.26.0
  • Migration to 2.19.0
  • Migration to 2.18.0
  • Migration to 2.17.0
  • Migration to 2.16.0

Getting Started

  • Initalize API
  • Scanning a document with MobbScan
  • Performing Face Matching
  • Adding a video step
  • Record a video while user scans the document
  • Getting the verification result
  • Scanning documents with NFC
  • Detect and scan MRZ
  • Detect and scan a PDF417
  • Add fields to validations in agent portal
  • Error Handling

Additional Configuration

  • MobbScan Configuration

Customization

  • Customize Detection Views
  • Customize Feedback Messages
  • Customize Unattended Process

Reference

  • Changelog

Add fields to validations in agent portal

Sometimes you need to add some extra information to the back-end server further than ID card extracted data. For this purpose, MobbScan SDK allows sending to the agent portal as many extra fields as you desire, sending the information as key/value maps.

First of all, MobbScanAPI's baseUrl must be configured with an agent portal URL. That means that the URL should looks like this:

Swift
ObjectiveC
MobbScanAPI.getInstance().baseURL = "https://pre.mobbscan.mobbeel.com/mobbscan-agent"
[[MobbScanAPI getInstance] setBaseURL:@"https://pre.mobbscan.mobbeel.com/mobbscan-agent"];

The extra fields must be posted once the scanning process has ended and the information has been stored on the agent portal. In order to doing this, you may call this method:

Swift
ObjectiveC
let parameter = ["phone": "6564654"]
MobbScanAPI.getInstance().addExtraParameter(parameter, forValidationWithScanId: "YOUR_SCANID", withSuccess:{

}, failure: { error in

})
NSDictionary* parameter = @{@"phone":@"6564654"};
[[MobbScanAPI getInstance] addExtraParameter:parameter
forValidationWithScanId:"YOUR_SCANID"
withSuccess:^(){
NSLog(@"Parameter added properly");
} failure:^(NSError* error){
NSLog(@"Failure adding parameter");
}];

As you can see, the "extra field" is created as a Dictionary / NSDictionary and sent to MobbScan API with the addExtraParameter method. Once the data has been posted on the server, you will receive feedback on the success or failure blocks.

← Detect and scan a PDF417Error Handling →
Mobbeel for developers
Product Documentation
MobbIDMobbScanMobbSign
Connect
LinkedInFacebookX
More
FAQContact Us
Mobbeel Solutions SL
Copyright © 2025 Mobbeel Solutions SL