GET api/printertypeapi/printertype/{type}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
type

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

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": "f450fcd4-343a-45fd-a916-a84799ceda69",
  "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>f450fcd4-343a-45fd-a916-a84799ceda69</id>
  <type>sample string 4</type>
</printer_type>