# fulfillmentServiceUpdate - admin-graphql - MUTATION Version: 2024-10 ## Description Updates a fulfillment service. If you are using API version `2023-10` or later, and you need to update the location managed by the fulfillment service (for example, to change the address of a fulfillment service), use the [LocationEdit](https://shopify.dev/api/admin-graphql/latest/mutations/locationEdit) mutation. ### Access Scopes `write_fulfillments` access scope. Also: The user must have fulfill_and_ship_orders permission. ## Arguments * [callbackUrl](/docs/api/admin-graphql/2024-10/scalars/URL): URL - The URL to send requests for the fulfillment service. The following considerations apply: - Shopify queries the callback_url/fetch_tracking_numbers endpoint to retrieve tracking numbers for orders, if `trackingSupport` is set to `true`. - Shopify queries the callback_url/fetch_stock endpoint to retrieve inventory levels, if `inventoryManagement` is set to `true`. - Shopify uses the callback_url/fulfillment_order_notification endpoint to send [fulfillment and cancellation requests](https://shopify.dev/apps/fulfillment/fulfillment-service-apps/manage-fulfillments#step-2-receive-fulfillment-requests-and-cancellations). * [fulfillmentOrdersOptIn](/docs/api/admin-graphql/2024-10/scalars/Boolean): Boolean - Whether the fulfillment service uses the [fulfillment order based workflow]( https://shopify.dev/apps/fulfillment/fulfillment-service-apps/manage-fulfillments ) for managing fulfillments. [As of 2022-07 API version](https://shopify.dev/changelog/legacy-fulfillment-api-deprecation), the fulfillment order based workflow is the only way to manage fulfillments, and `true` is the only valid value for `fulfillmentOrdersOptIn`. * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! - The id of the fulfillment service. * [inventoryManagement](/docs/api/admin-graphql/2024-10/scalars/Boolean): Boolean - Whether the fulfillment service tracks product inventory and provides updates to Shopify. * [name](/docs/api/admin-graphql/2024-10/scalars/String): String - The name of the fulfillment service. * [permitsSkuSharing](/docs/api/admin-graphql/2024-10/scalars/Boolean): Boolean - Whether the fulfillment service can stock inventory alongside other locations. * [trackingSupport](/docs/api/admin-graphql/2024-10/scalars/Boolean): Boolean - Whether the fulfillment service provides tracking numbers for packages. ## Returns * [fulfillmentService](/docs/api/admin-graphql/2024-10/objects/FulfillmentService): FulfillmentService The updated fulfillment service. * [userErrors](/docs/api/admin-graphql/2024-10/objects/UserError): UserError! The list of errors that occurred from executing the mutation. ## Examples ### Modify an existing FulfillmentService 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 fulfillmentServiceUpdate($id: ID!, $name: String!) { fulfillmentServiceUpdate(id: $id, name: $name) { fulfillmentService { id serviceName } userErrors { field message } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/FulfillmentService/198258461\",\n \"name\": \"My Updated Fulfillment Warehouse\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation fulfillmentServiceUpdate($id: ID!, $name: String!) {\n fulfillmentServiceUpdate(id: $id, name: $name) {\n fulfillmentService {\n id\n serviceName\n }\n userErrors {\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/FulfillmentService/198258461\",\n \"name\": \"My Updated Fulfillment Warehouse\"\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 fulfillmentServiceUpdate($id: ID!, $name: String!) {\n fulfillmentServiceUpdate(id: $id, name: $name) {\n fulfillmentService {\n id\n serviceName\n }\n userErrors {\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/FulfillmentService/198258461\",\n \"name\": \"My Updated Fulfillment Warehouse\"\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 fulfillmentServiceUpdate($id: ID!, $name: String!) {\n fulfillmentServiceUpdate(id: $id, name: $name) {\n fulfillmentService {\n id\n serviceName\n }\n userErrors {\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/FulfillmentService/198258461\",\n \"name\": \"My Updated Fulfillment Warehouse\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation fulfillmentServiceUpdate($id: ID!, $name: String!) {\n fulfillmentServiceUpdate(id: $id, name: $name) {\n fulfillmentService {\n id\n serviceName\n }\n userErrors {\n field\n message\n }\n }\n}" #### Graphql Input { "id": "gid://shopify/FulfillmentService/198258461", "name": "My Updated Fulfillment Warehouse" } #### Graphql Response { "data": { "fulfillmentServiceUpdate": { "fulfillmentService": { "id": "gid://shopify/FulfillmentService/198258461?id=true", "serviceName": "My Updated Fulfillment Warehouse" }, "userErrors": [] } } }