# priceListFixedPricesUpdate - admin - MUTATION
Version: unstable

## Description
Updates fixed prices on a price list. You can use the `priceListFixedPricesUpdate` mutation to set a fixed price for specific product variants or to delete prices for variants associated with the price list.

### Access Scopes
`write_products` access scope. Also: The user must have permission to create and edit catalogs.


## Arguments
* [priceListId](/docs/api/admin/unstable/scalars/ID): ID! - The price list that the prices will be updated against.
* [pricesToAdd](/docs/api/admin/unstable/input-objects/PriceListPriceInput): PriceListPriceInput! - The fixed prices to add.
* [variantIdsToDelete](/docs/api/admin/unstable/scalars/ID): ID! - A list of product variant IDs to remove from the price list.


## Returns
* [deletedFixedPriceVariantIds](/docs/api/admin/unstable/scalars/ID): ID A list of deleted variant IDs for prices.
* [priceList](/docs/api/admin/unstable/objects/PriceList): PriceList The price list for which the fixed prices were modified.
* [pricesAdded](/docs/api/admin/unstable/objects/PriceListPrice): PriceListPrice The prices that were added to the price list.
* [userErrors](/docs/api/admin/unstable/objects/PriceListPriceUserError): PriceListPriceUserError! The list of errors that occurred from executing the mutation.


## Examples