POST api/qr/invitations/create
Request Information
URI Parameters
None.
Body Parameters
QRInvitationCreateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| InvitationName | string |
None. |
|
| ImageUrl | string |
None. |
|
| ImageWidthPx | integer |
None. |
|
| ImageHeightPx | integer |
None. |
|
| BarcodeLeft | decimal number |
None. |
|
| BarcodeTop | decimal number |
None. |
|
| BarcodeWidth | decimal number |
None. |
|
| BarcodeHeight | decimal number |
None. |
|
| BarcodeColor | string |
None. |
|
| DisplayType | string |
None. |
|
| FontFamily | string |
None. |
|
| FontSize | integer |
None. |
|
| TextColor | string |
None. |
|
| TextLeft | decimal number |
None. |
|
| TextTop | decimal number |
None. |
|
| TextWidth | decimal number |
None. |
|
| TextHeight | decimal number |
None. |
|
| ScanPasswordHash | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"InvitationName": "sample string 2",
"ImageUrl": "sample string 3",
"ImageWidthPx": 4,
"ImageHeightPx": 5,
"BarcodeLeft": 6.1,
"BarcodeTop": 7.1,
"BarcodeWidth": 8.1,
"BarcodeHeight": 9.1,
"BarcodeColor": "sample string 10",
"DisplayType": "sample string 11",
"FontFamily": "sample string 12",
"FontSize": 1,
"TextColor": "sample string 13",
"TextLeft": 1.1,
"TextTop": 1.1,
"TextWidth": 1.1,
"TextHeight": 1.1,
"ScanPasswordHash": "sample string 14"
}
application/xml, text/xml
Sample:
<QRInvitationCreateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InviteAPI.Controllers"> <BarcodeColor>sample string 10</BarcodeColor> <BarcodeHeight>9.1</BarcodeHeight> <BarcodeLeft>6.1</BarcodeLeft> <BarcodeTop>7.1</BarcodeTop> <BarcodeWidth>8.1</BarcodeWidth> <DisplayType>sample string 11</DisplayType> <FontFamily>sample string 12</FontFamily> <FontSize>1</FontSize> <ImageHeightPx>5</ImageHeightPx> <ImageUrl>sample string 3</ImageUrl> <ImageWidthPx>4</ImageWidthPx> <InvitationName>sample string 2</InvitationName> <ScanPasswordHash>sample string 14</ScanPasswordHash> <TextColor>sample string 13</TextColor> <TextHeight>1.1</TextHeight> <TextLeft>1.1</TextLeft> <TextTop>1.1</TextTop> <TextWidth>1.1</TextWidth> <UserId>1</UserId> </QRInvitationCreateDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.