POST api/printerGroups
Create PrinterGroup
Request Information
URI Parameters
None.
Body Parameters
PrinterGroup object to save
PrinterGroupName | Description | Type | Additional 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-13T21:15:15.7387035", "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-13T21:15:15.7387035+00:00</Updated> </PrinterGroup>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.