quoteChangeCreateRampUp

Graphql fields and variables for the quoteChangeCreateRampUp mutation

Add a price list and configure the ramp up of the charges

Scope required: standard:write

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

Arguments

{
  "quoteId": "456123",
  "priceListId": "456123",
  "rampIntervalMonths": 123,
  "charges": [
    {
      "id": "456123",
      "name": "",
      "code": "",
      "priceListChargeId": "456123",
      "quantity": 123,
      "discount": "1.00",
      "price": "BigDecimal",
      "subtotal": "BigDecimal",
      "startDate": "2022-06-01",
      "endDate": "2022-06-01",
      "evergreen": true,
      "priceTiers": [
        {
          "starts": 123,
          "price": "BigDecimal"
        }
      ]
    }
  ]
}
Name
Type
Description

quoteId

ID

priceListId

ID

rampIntervalMonths

Int

charges

Response

Name
Type
Description

errors

List (String)

quoteChange

Last updated

Was this helpful?