PUT api/printerGroup/{name}

Update PrinterGroup

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

Name of printergroup to save

string

Required

Body Parameters

PrinterGroup object to save

PrinterGroup
NameDescriptionTypeAdditional information
Name

string

String length: inclusive between 0 and 60

Updated

date

None.

Deleted

boolean

None.

Members

Collection of PrinterGroupMember

None.

Request Formats

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "updated": "2025-06-14T06:15:01.3653037",
  "deleted": true,
  "members": [
    {
      "$id": "2",
      "groupName": "sample string 1",
      "printerName": "sample string 2",
      "deleted": true
    },
    {
      "$ref": "2"
    }
  ]
}

application/xml, text/xml

Sample:
<PrinterGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://gapsolutions.com.au/schema/ezimanager">
  <Deleted>true</Deleted>
  <Members>
    <PrinterGroupMember>
      <Deleted>true</Deleted>
      <GroupName>sample string 1</GroupName>
      <PrinterName>sample string 2</PrinterName>
    </PrinterGroupMember>
    <PrinterGroupMember>
      <Deleted>true</Deleted>
      <GroupName>sample string 1</GroupName>
      <PrinterName>sample string 2</PrinterName>
    </PrinterGroupMember>
  </Members>
  <Name>sample string 1</Name>
  <Updated>2025-06-14T06:15:01.3653037+00:00</Updated>
</PrinterGroup>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.