# fulfillmentServiceDelete - admin-graphql - MUTATION Version: 2024-10 ## Description Deletes a fulfillment service. ### Access Scopes `write_fulfillments` access scope. Also: The user must have fulfill_and_ship_orders permission. ## Arguments * [destinationLocationId](/docs/api/admin-graphql/2024-10/scalars/ID): ID - The ID of an active merchant managed location where inventory and commitments will be relocated after the fulfillment service is deleted. Inventory will only be transferred if the [`TRANSFER`](https://shopify.dev/api/admin-graphql/latest/enums/FulfillmentServiceDeleteInventoryAction#value-transfer) inventory action has been chosen. * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! - The ID of the fulfillment service to delete. * [inventoryAction](/docs/api/admin-graphql/2024-10/enums/FulfillmentServiceDeleteInventoryAction): FulfillmentServiceDeleteInventoryAction - The action to take with the location after the fulfillment service is deleted. ## Returns * [deletedId](/docs/api/admin-graphql/2024-10/scalars/ID): ID The ID of the deleted fulfillment service. * [userErrors](/docs/api/admin-graphql/2024-10/objects/UserError): UserError! The list of errors that occurred from executing the mutation. ## Examples ### Remove 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 fulfillmentServiceDelete($id: ID!, $destinationLocationId: ID) { fulfillmentServiceDelete(id: $id, destinationLocationId: $destinationLocationId) { deletedId userErrors { field message } } }\",\n \"variables\": {\n \"destinationLocationId\": \"gid://shopify/Location/124656943\",\n \"id\": \"gid://shopify/FulfillmentService/198258461\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation fulfillmentServiceDelete($id: ID!, $destinationLocationId: ID) {\n fulfillmentServiceDelete(id: $id, destinationLocationId: $destinationLocationId) {\n deletedId\n userErrors {\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"destinationLocationId\": \"gid://shopify/Location/124656943\",\n \"id\": \"gid://shopify/FulfillmentService/198258461\"\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 fulfillmentServiceDelete($id: ID!, $destinationLocationId: ID) {\n fulfillmentServiceDelete(id: $id, destinationLocationId: $destinationLocationId) {\n deletedId\n userErrors {\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"destinationLocationId\": \"gid://shopify/Location/124656943\",\n \"id\": \"gid://shopify/FulfillmentService/198258461\"\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 fulfillmentServiceDelete($id: ID!, $destinationLocationId: ID) {\n fulfillmentServiceDelete(id: $id, destinationLocationId: $destinationLocationId) {\n deletedId\n userErrors {\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"destinationLocationId\": \"gid://shopify/Location/124656943\",\n \"id\": \"gid://shopify/FulfillmentService/198258461\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation fulfillmentServiceDelete($id: ID!, $destinationLocationId: ID) {\n fulfillmentServiceDelete(id: $id, destinationLocationId: $destinationLocationId) {\n deletedId\n userErrors {\n field\n message\n }\n }\n}" #### Graphql Input { "destinationLocationId": "gid://shopify/Location/124656943", "id": "gid://shopify/FulfillmentService/198258461" } #### Graphql Response { "data": { "fulfillmentServiceDelete": { "deletedId": "gid://shopify/FulfillmentService/198258461", "userErrors": [] } } }