SeasonSet.fetchAllOffSeason
Web Session Object
Transaction Object
Token Object
Season Set Object
Refund Object
RatePlan Object
Product Object
Payment Provider Object
Payment Method Object
NameValuePair Object
GiftCard Object
Entitlement Object
Chargeback Object
Campaign Object
BillingPlan Object
AutoBill Object
Address Object
Activity Object
Account Object
SeasonSet.fetchAllOffSeason
The fetchAllOffSeason method returns all existing SeasonSet objects that are off-season during the input nowDate.
Input
srd: sparse response description, a SOAP string (which must be a JSON object), in which you specify the elements you want returned.This parameter enables the calling system to constrain a method call to return only components you specify. This gives you greater control over returned content, and improves response time within the Vindicia platform by reducing the processing needed for the call.
Some fields are required, either practically or in the WSDL, and will be returned regardless of the srd. A null srd returns the complete response.
page: the page number, starting at 0, for which to return the results. For example, if the total number of results is 85 and pageSize is 10:
- Specifying 0 for page gets the results from 1 through 10.
- Specifying 2 for page gets the results from 21 through 30.
pageSize: the number of records to display per page per call. This value must be greater than 0.
nowDate: the (optional) date to query. (Defaults to today.)
Output
return: an object of type Return that indicates the success or failure of the call.
seasonSets: an array of returned SeasonSet objects.
Returns
This method returns the codes listed in Standard Return Codes.
Example
$ss_factory = new SeasonSet();
$page = 0;
$pageSize = 10;
do {
$ret = $ss_factory ->fetchAllOffSeason($page, $pageSize);
$count = 0;
if ($ret['returnCode'] == 200) {
$fetchedSets = $ret['seasonSets'];
$count = sizeof($fetchedSets);
foreach ($fetchedSets as $set) {
// process a fetched Season Set here …
}
$page++;
}
} while ($count > 0);
For Users
Learn More