FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE |
FlexNet Operations Web Services Guide |
Restricting anyType
Contains elements as defined in the following table.
Component | Type | Occurs | Description |
---|---|---|---|
![]() |
1..1 | ||
MultipleDownloadPackagesQueryParameters | MultipleDownloadPackagesQueryParameters | 1..1 | See MultipleDownloadPackagesQueryParameters. |
SortBys | DownloadPackageSortBys | 1..1 | See DownloadPackageSortBys. |
PageNumber | integer | 1..1 | Required. Starts at 1. Say the getAccountsQuery 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 | Whether or not to include the contained objects in the response. TRUE or FALSE. |
The following XML fragment illustrates a getMultipleDownloadPackagesQuery message:
<getMultipleDownloadPackagesQuery>
<MultipleDownloadPackagesQueryParameters>
<!--Zero or more repetitions:-->
<DownloadPackageID>AS_DP_09031</DownloadPackageID>
<DownloadPackageID>AS_DP1</DownloadPackageID>
<DownloadPackageID>AS_DP2</DownloadPackageID>
</MultipleDownloadPackagesQueryParameters>
<SortBys>
<SortBy>
<SortKey>DOWNLOADPACKAGE_ID</SortKey>
<Ascending>false</Ascending>
</SortBy>
</SortBys>
<PageNumber>1</PageNumber>
<BatchSize>50</BatchSize>
<ReturnContainedObjects>0</ReturnContainedObjects>
</getMultipleDownloadPackagesQuery>