quoteChangeAdd

Graphql fields and variables for the quoteChangeAdd mutation

Create a quote change

Scope required: standard:write

mutation quoteChangeAdd ($quoteId: ID!, $priceListId: ID!, $trial: Boolean!, $evergreen: Boolean!, $priceAdjustmentTiming: PriceAdjustmentTiming!, $priceAdjustmentPercentage: Float!, $priceAdjustmentAction: PriceAdjustmentAction!, $renewalTermMonths: Int!) {
  quoteChangeAdd (quoteId: $quoteId, priceListId: $priceListId, trial: $trial, evergreen: $evergreen, priceAdjustmentTiming: $priceAdjustmentTiming, priceAdjustmentPercentage: $priceAdjustmentPercentage, priceAdjustmentAction: $priceAdjustmentAction, renewalTermMonths: $renewalTermMonths) {
      errors
      quoteChange {
        currencyId
        endDate
        evergreen
        id
        name
        priceAdjustmentAllowed
        priceAdjustmentLastDate
        priceAdjustmentPercentage
        priceListId
        quoteId
        quotePlanId
        rampIntervalMonths
        renewalSummary
        renewalTermMonths
        startDate
        subscriptionId
      }
  }
}

Arguments

{
  "quoteId": "456123",
  "priceListId": "456123",
  "trial": true,
  "evergreen": true,
  "priceAdjustmentTiming": "PriceAdjustmentTiming",
  "priceAdjustmentPercentage": "1.00",
  "priceAdjustmentAction": "PriceAdjustmentAction",
  "renewalTermMonths": 123
}
Name
Type
Description

quoteId

ID

priceListId

ID

trial

Boolean

evergreen

Boolean

priceAdjustmentTiming

priceAdjustmentPercentage

Float

priceAdjustmentAction

renewalTermMonths

Int

Response

Name
Type
Description

errors

List (String)

quoteChange

Last updated

Was this helpful?