POST api/quicklabel
Request Information
URI Parameters
None.
Body Parameters
QuickLabelRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| fname | string |
None. |
|
| lname | string |
None. |
|
| string |
None. |
||
| phone | string |
None. |
|
| address | string |
None. |
|
| address2 | string |
None. |
|
| city | string |
None. |
|
| state | string |
None. |
|
| zip | string |
None. |
|
| notes | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"fname": "sample string 1",
"lname": "sample string 2",
"email": "sample string 3",
"phone": "sample string 4",
"address": "sample string 5",
"address2": "sample string 6",
"city": "sample string 7",
"state": "sample string 8",
"zip": "sample string 9",
"notes": "sample string 10"
}
application/xml, text/xml
Sample:
<QuickLabelGeneratorController.QuickLabelRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RestAPI.Controllers"> <address>sample string 5</address> <address2>sample string 6</address2> <city>sample string 7</city> <email>sample string 3</email> <fname>sample string 1</fname> <lname>sample string 2</lname> <notes>sample string 10</notes> <phone>sample string 4</phone> <state>sample string 8</state> <zip>sample string 9</zip> </QuickLabelGeneratorController.QuickLabelRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |