GET api/printertypeapi/printertype/{type}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| type | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PrinterTypeViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| active | boolean |
Required |
|
| description | string |
Required |
|
| type | string |
Required String length: inclusive between 0 and 100 |
Response Formats
application/json, text/json
Sample:
{
"id": "39360fca-c442-416d-be20-b0068b2ad4c6",
"active": true,
"description": "sample string 3",
"type": "sample string 4"
}
application/xml, text/xml
Sample:
<printer_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <description>sample string 3</description> <id>39360fca-c442-416d-be20-b0068b2ad4c6</id> <type>sample string 4</type> </printer_type>