# priceListDelete - admin-graphql - MUTATION Version: 2024-10 ## Description Deletes a price list. For example, you can delete a price list so that it no longer applies for products in the associated market. ### Access Scopes `write_products` access scope. Also: The user must have a permission to delete a price list. ## Arguments * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! - The ID of the price list to be deleted. ## Returns * [deletedId](/docs/api/admin-graphql/2024-10/scalars/ID): ID The ID of the deleted price list. * [userErrors](/docs/api/admin-graphql/2024-10/objects/PriceListUserError): PriceListUserError! The list of errors that occurred from executing the mutation. ## Examples ### Delete a price list 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 priceListDelete($id: ID!) { priceListDelete(id: $id) { deletedId userErrors { field code message } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/PriceList/294167858\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation priceListDelete($id: ID!) {\n priceListDelete(id: $id) {\n deletedId\n userErrors {\n field\n code\n message\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/PriceList/294167858\"\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 priceListDelete($id: ID!) {\n priceListDelete(id: $id) {\n deletedId\n userErrors {\n field\n code\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/PriceList/294167858\"\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 priceListDelete($id: ID!) {\n priceListDelete(id: $id) {\n deletedId\n userErrors {\n field\n code\n message\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/PriceList/294167858\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation priceListDelete($id: ID!) {\n priceListDelete(id: $id) {\n deletedId\n userErrors {\n field\n code\n message\n }\n }\n}" #### Graphql Input { "id": "gid://shopify/PriceList/294167858" } #### Graphql Response { "data": { "priceListDelete": { "deletedId": "gid://shopify/PriceList/294167858", "userErrors": [] } } }