Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • totalCompletedAttempts
  • geolocationResult

TotalCompletedAttempts

This parameter will be returned for each Combination Source in the sourceList returned by each call to the DynamicFormsService (More information can be found on sources and sourceList here). It is returned as an attribute of the Source component as demonstrated below:

...

Please note that this parameter is by default configured not to count attempts which resulted in an ERROR state, if you would like to include error states in this count you will need to request a configuration change via support@vixverify.com.

GeolocationResult

This parameter turns on the geolocation result being returned in calls to the DynamicFormsService under the combination sources section of the xml where they have been received from the SDK. 

Code Block
languagexml
titlegeolocationResult Example
collapsetrue
<individualResult>
   <dateCreated>2017-10-09T1220T13:5651:0634.579200+1000</dateCreated>
   <extraData>
      <name>isMostRecentOCRAttempt</name>
      <value>true</value>
   </extraData>
	...
   <individualResult>
      <dateCreated>2017-10-20T13:51:33.433+1000</dateCreated>
   <geolocationResult>   <extraData>
         <name>Latitude</name>
         <latitude><value>-100.0000001</latitude>35.2382747</value>
      </extraData>
      <extraData>
         <name>Longitude</name>
         <longitude>100.0000001</longitude><value>149.0663325</value>
      </extraData>
      <extraData>
         <name>Image</name>
         <value>Front</value>
      </extraData>
      <source>Front<<name>Geolocation Result</source>name>
   </geolocationResult>individualResult>
   <geolocationResult><individualResult>
      <latitude>-100.0000001</latitude><dateCreated>2017-10-20T13:51:33.433+1000</dateCreated>
      <extraData>
         <longitude>100.0000001</longitude><name>Latitude</name>
         <source>Back</source><value>-35.2382747</value>
      </geolocationResult>
extraData>
      <extraData>
  <individualResult>       <documentRegion>AU</documentRegion><name>Longitude</name>
         <documentSubRegion>ACT<<value>149.0663325</documentSubRegion>value>
      <documentType>DRIVERS_LICENCE</documentType></extraData>
      <extraData>
 <method>interactive</method>       <name>Document Authenticity<<name>Image</name>
         <state>PENDING</state><value>Back</value>
      </individualResult>/extraData>
      <name>Geolocation Result</name>
   </individualResult>
	...
   <method>interactive</method>
   <name>OCR Document</name>
   <state>FAILED</state>
</individualResult>


Currently 3 4 parameters are returned the latitude, longitude, date and the source of the geolocation data, in this case since the geolocation is attached to a combination source the source is listed as the image type (Front or Back) which that geolocation was captured with. 

...