Administering an Encyclopedia volume : Searching within an Encyclopedia volume : Getting Encyclopedia volume, printer, and file type information : Retrieving a user’s printer settings
 
Retrieving a user’s printer settings
Printer settings include the user’s default printer, the orientation and default paper size on each printer, and printer resolution. To retrieve the printer settings for a user, use GetUserPrinterOptions and specify the user by name or ID.
<SOAP-ENV:Header>
<TargetVolume>radium</TargetVolume>
<AuthId>E4yxAKHFJg9FY0JssYijJI5XvkJqDOs</AuthId>
<Locale>en_US</Locale>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<GetUserPrinterOptions>
<UserId>515</UserId>
</GetUserPrinterOptions>
</SOAP-ENV:Body>
The preceding request returns the settings for every printer available to the user.
<SOAP-ENV:Body>
<GetUserPrinterOptionsResponse>
<PrinterOptions>
<PrinterOptions>
<PrinterName>Corbet</PrinterName>
<IsDefaultPrinter>false</IsDefaultPrinter>
<Orientation>PORTRAIT</Orientation>
<PageSize>Letter</PageSize>
<Scale>100</Scale>
<Resolution>300 X 300</Resolution>
<NumberOfCopies>160</NumberOfCopies>
</PrinterOptions>
<PrinterOptions>
<PrinterName>Griswold</PrinterName>
<IsDefaultPrinter>false</IsDefaultPrinter>
<Orientation>PORTRAIT</Orientation>
</PrinterOptions>
</PrinterOptions>
</GetUserPrinterOptionsResponse>
</SOAP-ENV:Body>