# orderOpen - admin-graphql - MUTATION Version: 2024-10 ## Description Opens a closed order. ### Access Scopes `write_orders` access scope. Also: User needs manage_orders_information permission. ## Arguments * [input](/docs/api/admin-graphql/2024-10/input-objects/OrderOpenInput): OrderOpenInput! - The input for the mutation. ## Returns * [order](/docs/api/admin-graphql/2024-10/objects/Order): Order The opened order. * [userErrors](/docs/api/admin-graphql/2024-10/objects/UserError): UserError! The list of errors that occurred from executing the mutation. ## Examples ### Re-open a closed order Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation OrderOpen($input: OrderOpenInput!) { orderOpen(input: $input) { order { canMarkAsPaid cancelReason cancelledAt clientIp confirmed customer { displayName email } discountCodes } userErrors { field message } } }\",\n \"variables\": {\n \"input\": {\n \"id\": \"gid://shopify/Order/235240302\"\n }\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation OrderOpen($input: OrderOpenInput!) {\n orderOpen(input: $input) {\n order {\n canMarkAsPaid\n cancelReason\n cancelledAt\n clientIp\n confirmed\n customer {\n displayName\n email\n }\n discountCodes\n }\n userErrors {\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"input\": {\n \"id\": \"gid://shopify/Order/235240302\"\n }\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n mutation OrderOpen($input: OrderOpenInput!) {\n orderOpen(input: $input) {\n order {\n canMarkAsPaid\n cancelReason\n cancelledAt\n clientIp\n confirmed\n customer {\n displayName\n email\n }\n discountCodes\n }\n userErrors {\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"input\": {\n \"id\": \"gid://shopify/Order/235240302\"\n }\n}\n\nresponse = client.query(query: query, variables: variables)\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n mutation OrderOpen($input: OrderOpenInput!) {\n orderOpen(input: $input) {\n order {\n canMarkAsPaid\n cancelReason\n cancelledAt\n clientIp\n confirmed\n customer {\n displayName\n email\n }\n discountCodes\n }\n userErrors {\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"input\": {\n \"id\": \"gid://shopify/Order/235240302\"\n }\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation OrderOpen($input: OrderOpenInput!) {\n orderOpen(input: $input) {\n order {\n canMarkAsPaid\n cancelReason\n cancelledAt\n clientIp\n confirmed\n customer {\n displayName\n email\n }\n discountCodes\n }\n userErrors {\n field\n message\n }\n }\n}" #### Graphql Input { "input": { "id": "gid://shopify/Order/235240302" } } #### Graphql Response { "data": { "orderOpen": { "order": { "canMarkAsPaid": false, "cancelReason": null, "cancelledAt": null, "clientIp": null, "confirmed": true, "customer": { "displayName": "Bob Bobsen", "email": "bob@example.com" }, "discountCodes": [] }, "userErrors": [] } } }