FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: getMaintenanceQueryRequest

Description

A getMaintenanceQueryRequest message contains an element of getMaintenanceQueryRequestType.

Derived By

Type getMaintenanceQueryRequestType

Content Model

Contains elements as defined in the following table.

Component  Type  Occurs  Description 
    1..1   
queryParams  maintenanceQueryParametersType  0..1  Required. See maintenanceQueryParametersType. Leave this element blank to return all maintenance products.
pageNumber  integer  1..1  Required. Starts at 1. Say the getMaintenanceCount operation using the same query parameters returns 100 records. If the batch size is 50 records and you want the second batch of 50, set pageNumber to 2.
batchSize  integer  1..1  Required. Maximum number of records to return in the response.
returnContainedObjects  boolean  1..1  Required. If true, return arrays of elements that are contained in the maitenance product.
Referenced By
Name  Type 
getMaintenanceQuery  Method 
XML Example

The following XML fragment illustrates a getMaintenanceQueryRequest message:

<getMaintenanceQueryRequest>
   <queryParams>
      <maintenanceName>
         <value>M</value>
         <searchType>STARTS_WITH</searchType>
      </maintenanceName>
      <version>
         <value>1</value>
         <searchType>STARTS_WITH</searchType>
      </version>
   </queryParams>
   <pageNumber>1</pageNumber>
   <batchSize>30</batchSize>
   <returnContainedObjects>false</returnContainedObjects>
</getMaintenanceQueryRequest>