PUT api/printerGroup/{name}/printer/{printerName}

Add a Printer to a PrinterGroup

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

Name of PrinterGroup

string

Required

printerName

Name of Printer

string

Required

Body Parameters

PrinterGroupMember object to save

PrinterGroupMember
NameDescriptionTypeAdditional information
GroupName

string

String length: inclusive between 0 and 60

PrinterName

string

String length: inclusive between 0 and 60

Deleted

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "groupName": "sample string 1",
  "printerName": "sample string 2",
  "deleted": true
}

application/xml, text/xml

Sample:
<PrinterGroupMember xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://gapsolutions.com.au/schema/ezimanager">
  <Deleted>true</Deleted>
  <GroupName>sample string 1</GroupName>
  <PrinterName>sample string 2</PrinterName>
</PrinterGroupMember>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.