POST api/qr/create
Request Information
URI Parameters
None.
Body Parameters
QRCodeRequestName | Description | Type | Additional information |
---|---|---|---|
QRType | string |
Required String length: inclusive between 0 and 50 |
|
Title | string |
Required String length: inclusive between 0 and 100 |
|
Data | string |
Required |
|
Message | string |
String length: inclusive between 0 and 500 |
|
QRMode | string |
Required String length: inclusive between 0 and 50 |
|
Customization | Customization |
None. |
Request Formats
application/json, text/json
Sample:
{ "QRType": "sample string 1", "Title": "sample string 2", "Data": "sample string 3", "Message": "sample string 4", "QRMode": "sample string 5", "Customization": { "Height": 1, "Width": 2, "PixelColor": "sample string 3", "BackgroundColor": "sample string 4", "PixelRange": 5, "LogoUrl": "sample string 6", "LogoSizePercentage": 7, "LogoBorder": 8 } }
application/xml, text/xml
Sample:
<QRCodeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SeeTheProWebAPI.Controllers"> <Customization> <BackgroundColor>sample string 4</BackgroundColor> <Height>1</Height> <LogoBorder>8</LogoBorder> <LogoSizePercentage>7</LogoSizePercentage> <LogoUrl>sample string 6</LogoUrl> <PixelColor>sample string 3</PixelColor> <PixelRange>5</PixelRange> <Width>2</Width> </Customization> <Data>sample string 3</Data> <Message>sample string 4</Message> <QRMode>sample string 5</QRMode> <QRType>sample string 1</QRType> <Title>sample string 2</Title> </QRCodeRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.