GET api/printertypeapi/printertypes?active={active}&lastUpdate={lastUpdate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
active

boolean

None.

lastUpdate

date

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PrinterTypeViewModel
NameDescriptionTypeAdditional 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": "609ca5d9-8498-46bf-877d-e1e6e0a9f5b3",
    "active": true,
    "description": "sample string 3",
    "type": "sample string 4"
  },
  {
    "id": "609ca5d9-8498-46bf-877d-e1e6e0a9f5b3",
    "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>609ca5d9-8498-46bf-877d-e1e6e0a9f5b3</id>
    <type>sample string 4</type>
  </printer_type>
  <printer_type>
    <active>true</active>
    <description>sample string 3</description>
    <id>609ca5d9-8498-46bf-877d-e1e6e0a9f5b3</id>
    <type>sample string 4</type>
  </printer_type>
</ArrayOfprinter_type>