priceAdjustmentBundles
Get all price adjustment bundles currently assigned to an account.
Arguments
The account number.
Examples
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 PriceAdjustmentBundles($accountNumber: String!) {
priceAdjustmentBundles(accountNumber: $accountNumber) {
availabilityPeriod {
...PriceAdjustmentAvailabilityPeriodFragment
}
code
name
priceAdjustments {
...PriceAdjustmentFragment
}
}
}
Variables
{
"accountNumber": "A-2866C6AF"
}
Response
{
"data": {
"priceAdjustmentBundles": [
{
"availabilityPeriod": PriceAdjustmentAvailabilityPeriod,
"code": "say-organization-task-to-whether",
"name": "number-computer-economy-design-now",
"priceAdjustments": [PriceAdjustment]
}
]
}
}