POST api/Tools/QrReaderGuiResult

Request Information

URI Parameters

None.

Body Parameters

QrReaderGuiResultRequest
NameDescriptionTypeAdditional information
url

string

None.

Request Formats

application/json, text/json

Sample:
{
  "url": "sample string 1"
}

application/xml, text/xml

Sample:
<QrReaderGuiResultRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Areas.Tools.Models">
  <Url>sample string 1</Url>
</QrReaderGuiResultRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'QrReaderGuiResultRequest'.

Response Information

Resource Description

QrReaderGuiResultResponse
NameDescriptionTypeAdditional information
qrUrl

string

None.

mesasge

string

None.

isSuccess

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "qrUrl": "sample string 1",
  "mesasge": "sample string 2",
  "isSuccess": true
}

application/xml, text/xml

Sample:
<QrReaderGuiResultResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Areas.Tools.Models">
  <IsSuccess xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Models">true</IsSuccess>
  <Mesasge xmlns="http://schemas.datacontract.org/2004/07/NMP3000Api.Models">sample string 2</Mesasge>
  <QrUrl>sample string 1</QrUrl>
</QrReaderGuiResultResponse>