FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Complex Type: DownloadPackageQueryParameters

Derived By

Restricting anyType

Content Model

Contains elements as defined in the following table.

Component  Type  Occurs  Description 
    1..1   
DownloadPackageID  SimpleQueryType  0..1 

A DownloadPackageID element contains:

  • value—a string to match part or all of the Download Package ID.

  • searchType—one of the following simpleSearchType values:

    • STARTS_WITH

    • CONTAINS

    • ENDS_WITH

    • EQUALS

DownloadPackageDescription  SimpleQueryType  0..1 

A Description element contains:

  • value—a string to match part or all of the description.

  • searchType—one of the following simpleSearchType values:

    • STARTS_WITH

    • CONTAINS

    • ENDS_WITH

    • EQUALS

DownloadPackageVersion  string  0..1  Version of the Download Package.
CreationDateStart  date  0..1  The start date of the Download Package creation.
CreationDateEnd  date  0..1  The end date of the Download Package creation.
Availability  AvailabilityType  0..1 

One of the following:

  • ARCHIVE

  • CURRENT

  • FUTURE

LastModifiedDateTime  DateTimeQueryType  0..1 

Enables producers to import data about periodic updates into their back office system and make this data available to their end customers.

In a request, the parameter has the following structure:

<LastModifiedDateTime>
   <value>2022-09-13T15:00:34+02:00</value>
   <searchType>AFTER</searchType>
</LastModifiedDateTime>

The LastModifiedDateType includes a value and searchType:

  • value—The date and time value is used to select items based on when they were last modified. If no time zone is provided in the request, the search is carried out in the time zone of the FlexNet Operations database (Pacific Standard Time (PST) or Pacific Daylight Time (PDT)). This can be overridden by specifying a time zone in the request. When including a time zone in the request, the time zone should be specified as offset from GMT (for example, 2022-09-13T15:00:34+02:00).

  • searchType—One of the following values: ON, AFTER, BEFORE.

The date and time in the response are provided in Greenwich Mean Time (GMT).

EXAMPLE

When a download package is created at 2022-08-11T07:10:39 - PST, it can be searched in following ways:

Central European Time (CET)

<LastModifiedDateTime>
   <value>2022-08-11T16:10:39+02:00</value>
   <searchType>ON</searchType>
</LastModifiedDateTime>


Greenwich Mean Time (GMT)

<LastModifiedDateTime>
   <value>2022-08-11T14:10:39.000Z</value>
   <searchType>ON</searchType>
</LastModifiedDateTime>


Pacific Standard Time (PST)

<LastModifiedDateTime>
   <value>2022-08-11T07:10:39</value>
   <searchType>ON</searchType>
</LastModifiedDateTime>

Also, the following parameter should be set to true:

<ReturnContainedObjects>true</ReturnContainedObjects>
AttributeDescriptor  AttributeDescriptor  0..* 

Optional attribute to query download packages based on custom attribute values. For example:

<AttributeDescriptor>
    <AttributeName>4422_longtext</AttributeName>
    <StringValue>longtextvalue</StringValue>
</AttributeDescriptor>