--- title: fulfillmentOrderOpen - GraphQL Admin description: >- Marks a scheduled fulfillment order as open. From API version 2026-01, this will also mark a fulfillment order as open when it is assigned to a merchant managed location and has had progress reported. api_version: 2026-01 api_name: admin type: mutation api_type: graphql source_url: html: >- https://shopify.dev/docs/api/admin-graphql/latest/mutations/fulfillmentOrderOpen md: >- https://shopify.dev/docs/api/admin-graphql/latest/mutations/fulfillmentOrderOpen.md --- # fulfillment​Order​Open mutation Requires `write_merchant_managed_fulfillment_orders` access scope or `write_third_party_fulfillment_orders` access scope. Also: The user must have fulfill\_and\_ship\_orders permission. Marks a scheduled fulfillment order as open. From API version 2026-01, this will also mark a fulfillment order as open when it is assigned to a merchant managed location and has had progress reported. ## Arguments * id *** ## Fulfillment​Order​Open​Payload returns * fulfillmentOrder * userErrors *** ## Examples * ### Marks the fulfillment order as open #### Description A scheduled fulfillment order can now be fulfilled, and a merchant or order management app marks the fulfillment order as open. #### Query ```graphql mutation fulfillmentOrderOpen($id: ID!) { fulfillmentOrderOpen(id: $id) { fulfillmentOrder { id status } userErrors { field message } } } ``` #### Variables ```json { "id": "gid://shopify/FulfillmentOrder/1046000781" } ``` #### cURL ```bash curl -X POST \ https://your-development-store.myshopify.com/admin/api/2026-01/graphql.json \ -H 'Content-Type: application/json' \ -H 'X-Shopify-Access-Token: {access_token}' \ -d '{ "query": "mutation fulfillmentOrderOpen($id: ID!) { fulfillmentOrderOpen(id: $id) { fulfillmentOrder { id status } userErrors { field message } } }", "variables": { "id": "gid://shopify/FulfillmentOrder/1046000781" } }' ``` #### React Router ```javascript import { authenticate } from "../shopify.server"; export const loader = async ({request}) => { const { admin } = await authenticate.admin(request); const response = await admin.graphql( `#graphql mutation fulfillmentOrderOpen($id: ID!) { fulfillmentOrderOpen(id: $id) { fulfillmentOrder { id status } userErrors { field message } } }`, { variables: { "id": "gid://shopify/FulfillmentOrder/1046000781" }, }, ); const json = await response.json(); return json.data; } ``` #### Ruby ```ruby session = ShopifyAPI::Auth::Session.new( shop: "your-development-store.myshopify.com", access_token: access_token ) client = ShopifyAPI::Clients::Graphql::Admin.new( session: session ) query = <<~QUERY mutation fulfillmentOrderOpen($id: ID!) { fulfillmentOrderOpen(id: $id) { fulfillmentOrder { id status } userErrors { field message } } } QUERY variables = { "id": "gid://shopify/FulfillmentOrder/1046000781" } response = client.query(query: query, variables: variables) ``` #### Node.js ```javascript const client = new shopify.clients.Graphql({session}); const data = await client.query({ data: { "query": `mutation fulfillmentOrderOpen($id: ID!) { fulfillmentOrderOpen(id: $id) { fulfillmentOrder { id status } userErrors { field message } } }`, "variables": { "id": "gid://shopify/FulfillmentOrder/1046000781" }, }, }); ``` #### Response ```json { "fulfillmentOrderOpen": { "fulfillmentOrder": { "id": "gid://shopify/FulfillmentOrder/1046000781", "status": "OPEN" }, "userErrors": [] } } ``` * ### fulfillmentOrderOpen reference