GreenID Mobile customers will on occasion see extra information come back in their API calls depending on what settings have been applied to their account.
...
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 | ||||||
---|---|---|---|---|---|---|
| ||||||
<individualResult> <dateCreated>2017-10-09T12:56:06.579+1000</dateCreated> <extraData> <name>isMostRecentOCRAttempt</name> <value>true</value> </extraData> <geolocationResult> <latitude>-100.0000001</latitude> <longitude>100.0000001</longitude> <source>Front</source> </geolocationResult> <geolocationResult> <latitude>-100.0000001</latitude> <longitude>100.0000001</longitude> <source>Back</source> </geolocationResult> <individualResult> <documentRegion>AU</documentRegion> <documentSubRegion>ACT</documentSubRegion> <documentType>DRIVERS_LICENCE</documentType> <method>interactive</method> <name>Document Authenticity</name> <state>PENDING</state> </individualResult> ... </individualResult> |
...
Currently 3 parameters are returned the latitude, longitude and the source of the geolocation data, in this case since its 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.
...