fanClubStatus
Get current status, historic discounts and future projections for a Fan Club source.
Returns
[FanClubStatus]Possible Errors
Allowed Viewers
Required Permissions
Can access customer queriesQuery Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query FanClubStatus(
$accountNumber: String,
$propertyId: Int
) {
fanClubStatus(
accountNumber: $accountNumber,
propertyId: $propertyId
) {
accountNumbers
catchments
current {
...DiscountDataFragment
}
discountSource
forecast {
...DiscountForecastFragment
}
historic {
...DiscountDataFragment
}
location
name
propertyIds
thresholds {
...ThresholdFragment
}
windFarm
}
}
Variables
{
"accountNumber": "A-14CFC5B9",
"propertyId": 51754429
}
Response
{
"data": {
"fanClubStatus": [
{
"accountNumbers": "college-past-western-option-skin",
"catchments": "executive-choice-according-wonder-budget",
"current": DiscountData,
"discountSource": "here-pressure-same-peace-keep",
"forecast": DiscountForecast,
"historic": [DiscountData],
"location": "spring-kind-structure-approach-reveal",
"name": "best-hold-kitchen-consider-large",
"propertyIds": 76,
"thresholds": [Threshold],
"windFarm": "already-create-wish-last-hope"
}
]
}
}