FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE |
FlexNet Operations Web Services Guide |
A getFeatureBundlesQueryRequest message contains an element of getFeatureBundlesQueryRequestType.
Type getFeatureBundlesQueryRequestType
Contains elements as defined in the following table.
Component | Type | Occurs | Description |
---|---|---|---|
![]() |
1..1 | ||
queryParams | featureBundleQueryParametersType | 0..1 | Required. See featureBundleQueryParametersType. Leave this element blank to return all feature bundles. |
pageNumber | integer | 1..1 | Required. Starts at 1. Say the getFeatureBundleCount 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 an array of featuresListType of features that are contained in the feature bundle. See featuresListType. |
Name | Type |
---|---|
getFeatureBundlesQuery | Method |
The following XML fragment illustrates a getFeatureBundlesQueryRequest message:
<getFeatureBundlesQueryRequest>
<queryParams>
<name>
<value>FB_basic</value>
<searchType>STARTS_WITH</searchType>
</name>
</queryParams>
<pageNumber>1</pageNumber>
<batchSize>50</batchSize>
<returnContainedObjects>true</returnContainedObjects>
</getFeatureBundlesQueryRequest>