quoteChangeApplyPriceAdjustment

Graphql fields and variables for the quoteChangeApplyPriceAdjustment mutation

Apply the price adjustments on a quote change

Scope required: standard:write

mutation quoteChangeApplyPriceAdjustment ($quoteChangeId: ID!, $priceAdjustmentPercentage: Float!, $startDate: ISO8601Date!) {
  quoteChangeApplyPriceAdjustment (quoteChangeId: $quoteChangeId, priceAdjustmentPercentage: $priceAdjustmentPercentage, startDate: $startDate) {
      errors
      quoteChange {
        currencyId
        endDate
        evergreen
        id
        name
        priceAdjustmentAllowed
        priceAdjustmentLastDate
        priceAdjustmentPercentage
        priceListId
        quoteId
        quotePlanId
        rampIntervalMonths
        renewalSummary
        renewalTermMonths
        startDate
        subscriptionId
      }
  }
}

Arguments

{
  "quoteChangeId": "456123",
  "priceAdjustmentPercentage": "1.00",
  "startDate": "2022-06-01"
}
Name
Type
Description

quoteChangeId

ID

priceAdjustmentPercentage

Float

startDate

ISO8601Date

Response

Name
Type
Description

errors

List (String)

quoteChange

Last updated

Was this helpful?