POST api/GetQRCodeGenerator?GnetAssociateID={GnetAssociateID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| GnetAssociateID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
QRCodeResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | string |
None. |
|
| Message | string |
None. |
|
| QRCodeImagePath | string |
None. |
|
| base64String | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"Message": "sample string 2",
"QRCodeImagePath": "sample string 3",
"base64String": "sample string 4"
}
application/xml, text/xml
Sample:
<QRCodeResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models"> <Message>sample string 2</Message> <QRCodeImagePath>sample string 3</QRCodeImagePath> <Status>sample string 1</Status> <base64String>sample string 4</base64String> </QRCodeResult>