GET api/printertypeapi/printertypes?active={active}&lastUpdate={lastUpdate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
None. |
|
| lastUpdate | date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of 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": "67cc8f2c-baf6-4bc5-abf7-26e69b02168d",
"active": true,
"description": "sample string 3",
"type": "sample string 4"
},
{
"id": "67cc8f2c-baf6-4bc5-abf7-26e69b02168d",
"active": true,
"description": "sample string 3",
"type": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfprinter_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
<printer_type>
<active>true</active>
<description>sample string 3</description>
<id>67cc8f2c-baf6-4bc5-abf7-26e69b02168d</id>
<type>sample string 4</type>
</printer_type>
<printer_type>
<active>true</active>
<description>sample string 3</description>
<id>67cc8f2c-baf6-4bc5-abf7-26e69b02168d</id>
<type>sample string 4</type>
</printer_type>
</ArrayOfprinter_type>