listOffersByPage

List<OfferInfo>
    listOffersByPage(String userCredential, String partitionName,
        Locale requestedLocale, Attribute[] attributes,
        long pageOffset, int pageSize)
    throws AttributeNotFoundException, InvalidAttributeException,
        RangeException;

Enumerate a "page" of offers that match the optional attribute values, beginning with the specified page offset. Folders are ignored. Matches are returned based on a "like" match for strings (where the match is considered sufficient if a string contains the queried value), and exact match for dates and numbers.

After retrieved, each OfferInfo returned can be used as is, such as to display a summary list, or the attribute methods can be used to fetch or update the offer's attributes.

No state is maintained by this API, so it is possible to make calls to it in any order.