# quoteChangeRevertPriceAdjustment

Revert the price adjustments on a quote change

**Scope required:** standard:write

```graphql
mutation quoteChangeRevertPriceAdjustment ($quoteChangeId: ID!) {
  quoteChangeRevertPriceAdjustment (quoteChangeId: $quoteChangeId) {
      errors
      quoteChange {
        accountId
        currencyId
        endDate
        evergreen
        id
        isTrial
        name
        priceAdjustmentAllowed
        priceAdjustmentLastDate
        priceAdjustmentPercentage
        priceListId
        quoteId
        quotePlanId
        rampIntervalMonths
        renewalSummary
        renewalTermMonths
        startDate
        subscriptionId
        tenantId
        trialEndDate
        trialStartDate
      }
  }
}
```

## Arguments

```json
{
  "quoteChangeId": "456123"
}
```

| Name          | Type | Description |
| ------------- | ---- | ----------- |
| quoteChangeId | ID   |             |

## Response

| Name        | Type                                                                            | Description |
| ----------- | ------------------------------------------------------------------------------- | ----------- |
| errors      | List (String)                                                                   |             |
| quoteChange | [QuoteChange](https://docs.bunny.com/developer/api-reference/types/quotechange) |             |
