GET api/LabelType?type={type}
Gets a list of label type.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| type |
List Type. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of LabelType| Name | Description | Type | Additional information |
|---|---|---|---|
| LabelTypeId | integer |
None. |
|
| LabelTypeName | string |
None. |
|
| LabelFilePath | string |
None. |
|
| LabelFileParameter | string |
None. |
|
| Description | string |
None. |
|
| LabelPrinter | string |
None. |
|
| LabelSize | string |
None. |
|
| LabelFormat | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"LabelTypeId": 1,
"LabelTypeName": "sample string 2",
"LabelFilePath": "sample string 3",
"LabelFileParameter": "sample string 4",
"Description": "sample string 5",
"LabelPrinter": "sample string 6",
"LabelSize": "sample string 7",
"LabelFormat": "sample string 8"
},
{
"LabelTypeId": 1,
"LabelTypeName": "sample string 2",
"LabelFilePath": "sample string 3",
"LabelFileParameter": "sample string 4",
"Description": "sample string 5",
"LabelPrinter": "sample string 6",
"LabelSize": "sample string 7",
"LabelFormat": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfLabelType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomersdbWebShared.Models">
<LabelType>
<Description>sample string 5</Description>
<LabelFileParameter>sample string 4</LabelFileParameter>
<LabelFilePath>sample string 3</LabelFilePath>
<LabelFormat>sample string 8</LabelFormat>
<LabelPrinter>sample string 6</LabelPrinter>
<LabelSize>sample string 7</LabelSize>
<LabelTypeId>1</LabelTypeId>
<LabelTypeName>sample string 2</LabelTypeName>
</LabelType>
<LabelType>
<Description>sample string 5</Description>
<LabelFileParameter>sample string 4</LabelFileParameter>
<LabelFilePath>sample string 3</LabelFilePath>
<LabelFormat>sample string 8</LabelFormat>
<LabelPrinter>sample string 6</LabelPrinter>
<LabelSize>sample string 7</LabelSize>
<LabelTypeId>1</LabelTypeId>
<LabelTypeName>sample string 2</LabelTypeName>
</LabelType>
</ArrayOfLabelType>