# orderEditCommit - admin - MUTATION
Version: 2024-04

## Description
Applies and saves staged changes to an order. Mutations are operating on `OrderEdit`.
All order edits start with `orderEditBegin`, have any number of `orderEdit`* mutations made, and end with `orderEditCommit`.

### Access Scopes
`write_order_edits` access scope.


## Arguments
* [id](/docs/api/admin/2024-04/scalars/ID): ID! - The ID of the [calculated order](https://shopify.dev/api/admin-graphql/latest/objects/calculatedorder)
that will have its changes applied to the order.
* [notifyCustomer](/docs/api/admin/2024-04/scalars/Boolean): Boolean - Whether to notify the customer or not.
* [staffNote](/docs/api/admin/2024-04/scalars/String): String - Note for staff members.


## Returns
* [order](/docs/api/admin/2024-04/objects/Order): Order The order with changes applied.
* [userErrors](/docs/api/admin/2024-04/objects/UserError): UserError! The list of errors that occurred from executing the mutation.


## Examples