rateGroupTouScheme
Get the time of use scheme definition and available time slots for a rate group within a product specification.
Arguments
Returns
TimeOfUseSchemeTypePossible Errors
Allowed Viewers
Required Permissions
Can query catalog offeringsQuery 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 RateGroupTouScheme(
$rateGroupCode: String!,
$specificationIdentifier: String!
) {
rateGroupTouScheme(
rateGroupCode: $rateGroupCode,
specificationIdentifier: $specificationIdentifier
) {
name
timeslots {
...TimeSlotWithActivationRuleTypeFragment
}
timezone
}
}
Variables
{
"rateGroupCode": "store-model-happy-memory-say",
"specificationIdentifier": "32622882"
}
Response
{
"data": {
"rateGroupTouScheme": {
"name": "father-same-you-news-green",
"timeslots": [TimeSlotWithActivationRuleType],
"timezone": "science-hotel-hundred-low-else"
}
}
}