GET api/settings/fingerprint

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ServiceResponseOfApplicantPassportDTO
NameDescriptionTypeAdditional information
HttpStatusCode

HttpStatusCode

None.

ResponseMessage

string

None.

HasError

boolean

None.

Data

ApplicantPassportDTO

None.

Response Formats

application/json, text/json

Sample:
{
  "httpStatusCode": 100,
  "responseMessage": "sample string 1",
  "hasError": true,
  "data": {
    "passportData": "QEA=",
    "imageType": "sample string 1",
    "imageSize": 2
  }
}

text/html

Sample:
{"httpStatusCode":100,"responseMessage":"sample string 1","hasError":true,"data":{"passportData":"QEA=","imageType":"sample string 1","imageSize":2}}

text/xml

Sample:
<ServiceResponseOfApplicantPassportDTO_P_PoWU07l xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApplicationPortalAPI.Models">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/ApplicationPortalAPI.Models.DTOs.Application">
    <d2p1:ImageSize>2</d2p1:ImageSize>
    <d2p1:ImageType>sample string 1</d2p1:ImageType>
    <d2p1:PassportData>QEA=</d2p1:PassportData>
  </Data>
  <HasError>true</HasError>
  <HttpStatusCode>Continue</HttpStatusCode>
  <ResponseMessage>sample string 1</ResponseMessage>
</ServiceResponseOfApplicantPassportDTO_P_PoWU07l>