Requires write_orders access scope. Also: User needs manage_orders_information permission.

Opens a closed order.


The input for the mutation.


Was this section helpful?

The opened order.

The list of errors that occurred from executing the mutation.


Was this section helpful?
Hide code
Mutation reference
Copy
mutation orderOpen($input: OrderOpenInput!) {
  orderOpen(input: $input) {
    order {
      # Order fields
    }
    userErrors {
      field
      message
    }
  }
}
Hide code
Input
Copy
{
  "input": {
    "id": "gid://shopify/<objectName>/10079785100"
  }
}
input OrderOpenInput {
  id: ID!
}