searchOffersBasic

List<WSOfferInfo> 
    searchOffersBasic(String userCredential, Locale requestedLocale, 
        String partitionName, long folderID, 
        String searchCriteria, boolean includeRetired, 
        int pageOffset, int pageSize) 
    throws CampaignServicesException;

Enumerate a "page" of offers that contain the given search criteria in the name, description, createBy or offer code fields, beginning with the specified page offset. Search is based on the optional Folder input. (If a folderID of 0 is provided, the root offer folder is used by default). Matches are returned based on a "contains" match for the search string.

Once retrieved, each WSOfferInfo returned can be used as is, for example 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.