Developer Guide 1.1
Last updated
Last updated
Copyright © 2021 MOSIP. This work is licensed under a Creative Commons Attribution (CC-BY-4.0) International License unless otherwise noted.
This page details only on very specific areas of MOSIP Token Seeder. For a elaborate understanding on the MTS API, please refer the API documentation page.
Refer API documentation.
When using above format, you may not need any mapping configuration. But in case you change any column name in the csv, please do provide the same in the mapping configuration.
Output might have mix of successful and failed records except for the case where whole of the input throws error. If successful, the record would be having the token placed against the vid. And if there is error processing a record, the same is updated against the vid and the error code and description is mentioned along.
submitted
submitted
is the first status immediately after you have placed a authtoken request.
invalid
If in case there is basic validation error such that the request could not be processed, the request in marked as invalid
.
submitted_with_errors
Once the system passes through the basic validation but has found that none of the records can go through due to varied record level validation issues, the system will update the request with submitted_with_errors
status.
processing
This status is updated when the seeder enqueues the request for processing
.
processed
Once the request is completed processing and ready for a result, the system updates the record with processed
status. There can be error codes mentioned in the output line items in case few but not entire records have any processing error.
processed_with_errors
When the request is processed but every record in the request has some or other processing errors, the system updates the request with processed_with_errors
status.
In case there is a prior request placed with considerably higher number of records, and you have placed subsequent request submitted even before getting output for your earlier request, the system might take a while to update the status of your newer request. It might be still in the submitted
state until the system finds a window to start processing.
Call back functionality enables MTS api to submit the output to a specified URI. Callback might also need authorization on most occasions. MTS currently supports following authorization types.
If the caller can supply a token while calling the MTS api, it can be configured in the authStaticBearer
attribute of callbackProperties
section.
The functionality is added to support the OpenG2P use case where in OpenG2P odoo modules can call the MTS and get the result directly imported to odoo database. Following are the parameters supported.
OAuth protocol is also supported in MTS callback functionality. This helps numerous systems which implements OAuth specification to integrate with MTS seamlessly. Below are the configurations available to setup OAuth based callback.
Error Code | Error Message |
---|---|
ATS-REQ-001 | json is not in valid format |
ATS-REQ-003 | name is not provided |
ATS-REQ-004 | gender is empty |
ATS-REQ-006 | date of birth is empty |
ATS-REQ-008 | address is empty |
ATS-REQ-009 | vid or its mapping not present |
ATS-REQ-010 | name or its mapping not present |
ATS-REQ-011 | gender or its mapping not present |
ATS-REQ-012 | dateOfBirth or its mapping not present |
ATS-REQ-015 | fullAddress or its mapping not present |
ATS-REQ-016 | no auth request found for the given identifier |
ATS-REQ-017 | auth request not processed yet |
ATS-REQ-018 | no odk baseurl provided |
ATS-REQ-019 | no email provided |
ATS-REQ-020 | no password provided |
ATS-REQ-021 | no odk project id provided |
ATS-REQ-022 | no odk form id provided |
ATS-REQ-023 | no submissions found for odk pull |
ATS-REQ-024 | callbackProperties cannot be empty for deliverytype callback |
ATS-REQ-025 | requestFileName is not valid in callbackProperties |
ATS-REQ-026 | callInBulk cannot be false for csv output |
ATS-REQ-027 | unsupported authType in CallbackProperties |
ATS-REQ-028 | authOdoo cannot be empty for authType odoo |
ATS-REQ-029 | authOauth cannot be empty for authType oauth |
ATS-REQ-030 | authStaticBearer cannot be empty for authType staticBearer |
ATS-REQ-031 | authUrl in authOdoo, cannot be empty for authType odoo |
ATS-REQ-032 | username in authOdoo, cannot be empty for authType odoo |
ATS-REQ-033 | database in authOdoo, cannot be empty for authType odoo |
ATS-REQ-034 | token in authStaticBearer cannot be empty for authType staticBearer |
ATS-REQ-100 | unknown error |
ATS-REQ-101 | none of the record form a valid request |
ATS-REQ-102 | invalid input |
ATS-REQ-103 | outputFormat is not a valid jq expression |
ATS-REQ-104 | for csv output, outputFormat cannot be list. Has to be json |
AUT_CRY_001 | Error parsing encryption certificate provided in config file. |
AUT_CRY_002 | Error reading P12 file provided in config file. |
AUT_CRY_003 | Error Encrypting Auth Data |
AUT_CRY_004 | Error Signing Auth Request Data |
AUT_BAS_001 | Not Able to process auth request |
There are cases where MTS might successfully pass on the request but IDA generates error based on the its implementation scenario. MTS will log such error directly to the output json/csv/file. In any case there are uncaught errors thrown by IDA, MTS will output the same as unknown error (ATS-REQ-100).
The names on the left side of the mapping config denotes the original expected names and the value part will hold the change of name, if any. The mapping config if not supplied, the system will assume that there are no changes in the names used. The same applies if any one or more element of the mapping is not provided.
Except for name and full address, the majority of the fields in authdata are direct mapping. MTS expects that there can be exceptions for name and full address for which the mapping is configured as a string array. For example, if the calling application or program stores the address fields in separate variables or columns like addressline1, addressline2, street, area, or zipcode; the same can be supplied directly as authdata with mapping supplied as a list of variable or column names as in the calling program.
With the output formatting capability, MTS can give you the result exactly the way in which you would want it ready for your further processing of data. The output format string to be supplied follows the jq format. In case the output format is not supplied, the default output will be generated which will be the same as the previous versions. The below section details on an example case for output formatting.
**input
**keyword in the output format string is used to represent the data you input into MTS as authdata parameter. output
keyword is used to identify that you intend to pick the data from the default auth request result. Please find below a sample for the default auth request output.
Field | Format/Options | Validation |
---|---|---|
vid | only valid vid/uin generated by MOSIP | Mandatory |
name | string | Mandatory |
gender | male/female/others | Mandatory |
dob | "YYYY/MM/DD" | Mandatory |
phoneNumber | country specific length without any country code | Optional |
emailId | string | Optional |
fullAddress | string | Mandatory |