# discountCodeBasicUpdate - admin-graphql - MUTATION Version: 2025-01 ## Description Updates an [amount off discount](https://help.shopify.com/manual/discounts/discount-types/percentage-fixed-amount) that's applied on a cart and at checkout when a customer enters a code. Amount off discounts can be a percentage off or a fixed amount off. > Note: > To update discounts that are automatically applied on a cart and at checkout, use the [`discountAutomaticBasicUpdate`](https://shopify.dev/docs/api/admin-graphql/latest/mutations/discountAutomaticBasicUpdate) mutation. ### Access Scopes Apps must have `write_discounts` access scope. ## Arguments * [basicCodeDiscount](/docs/api/admin-graphql/2025-01/input-objects/DiscountCodeBasicInput): DiscountCodeBasicInput! - The input data used to update the discount code. * [id](/docs/api/admin-graphql/2025-01/scalars/ID): ID! - The ID of the discount code to update. ## Returns * [codeDiscountNode](/docs/api/admin-graphql/2025-01/objects/DiscountCodeNode): DiscountCodeNode The discount code that was updated. * [userErrors](/docs/api/admin-graphql/2025-01/objects/DiscountUserError): DiscountUserError! The list of errors that occurred from executing the mutation. ## Examples ### Update a basic code discount Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2025-01/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation discountCodeBasicUpdate($id: ID!, $basicCodeDiscount: DiscountCodeBasicInput!) { discountCodeBasicUpdate(id: $id, basicCodeDiscount: $basicCodeDiscount) { codeDiscountNode { codeDiscount { ... on DiscountCodeBasic { title codes(first: 10) { nodes { code } } startsAt endsAt customerSelection { ... on DiscountCustomerAll { allCustomers } } customerGets { value { ... on DiscountPercentage { percentage } } items { ... on AllDiscountItems { allItems } } } appliesOncePerCustomer } } } userErrors { field code message } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/DiscountCodeNode/206265824\",\n \"basicCodeDiscount\": {\n \"endsAt\": null,\n \"customerGets\": {\n \"value\": {\n \"percentage\": 0.4\n }\n }\n }\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation discountCodeBasicUpdate($id: ID!, $basicCodeDiscount: DiscountCodeBasicInput!) {\n discountCodeBasicUpdate(id: $id, basicCodeDiscount: $basicCodeDiscount) {\n codeDiscountNode {\n codeDiscount {\n ... on DiscountCodeBasic {\n title\n codes(first: 10) {\n nodes {\n code\n }\n }\n startsAt\n endsAt\n customerSelection {\n ... on DiscountCustomerAll {\n allCustomers\n }\n }\n customerGets {\n value {\n ... on DiscountPercentage {\n percentage\n }\n }\n items {\n ... on AllDiscountItems {\n allItems\n }\n }\n }\n appliesOncePerCustomer\n }\n }\n }\n userErrors {\n field\n code\n message\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/DiscountCodeNode/206265824\",\n \"basicCodeDiscount\": {\n \"endsAt\": null,\n \"customerGets\": {\n \"value\": {\n \"percentage\": 0.4\n }\n }\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 discountCodeBasicUpdate($id: ID!, $basicCodeDiscount: DiscountCodeBasicInput!) {\n discountCodeBasicUpdate(id: $id, basicCodeDiscount: $basicCodeDiscount) {\n codeDiscountNode {\n codeDiscount {\n ... on DiscountCodeBasic {\n title\n codes(first: 10) {\n nodes {\n code\n }\n }\n startsAt\n endsAt\n customerSelection {\n ... on DiscountCustomerAll {\n allCustomers\n }\n }\n customerGets {\n value {\n ... on DiscountPercentage {\n percentage\n }\n }\n items {\n ... on AllDiscountItems {\n allItems\n }\n }\n }\n appliesOncePerCustomer\n }\n }\n }\n userErrors {\n field\n code\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/DiscountCodeNode/206265824\",\n \"basicCodeDiscount\": {\n \"endsAt\": null,\n \"customerGets\": {\n \"value\": {\n \"percentage\": 0.4\n }\n }\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 discountCodeBasicUpdate($id: ID!, $basicCodeDiscount: DiscountCodeBasicInput!) {\n discountCodeBasicUpdate(id: $id, basicCodeDiscount: $basicCodeDiscount) {\n codeDiscountNode {\n codeDiscount {\n ... on DiscountCodeBasic {\n title\n codes(first: 10) {\n nodes {\n code\n }\n }\n startsAt\n endsAt\n customerSelection {\n ... on DiscountCustomerAll {\n allCustomers\n }\n }\n customerGets {\n value {\n ... on DiscountPercentage {\n percentage\n }\n }\n items {\n ... on AllDiscountItems {\n allItems\n }\n }\n }\n appliesOncePerCustomer\n }\n }\n }\n userErrors {\n field\n code\n message\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/DiscountCodeNode/206265824\",\n \"basicCodeDiscount\": {\n \"endsAt\": null,\n \"customerGets\": {\n \"value\": {\n \"percentage\": 0.4\n }\n }\n }\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation discountCodeBasicUpdate($id: ID!, $basicCodeDiscount: DiscountCodeBasicInput!) {\n discountCodeBasicUpdate(id: $id, basicCodeDiscount: $basicCodeDiscount) {\n codeDiscountNode {\n codeDiscount {\n ... on DiscountCodeBasic {\n title\n codes(first: 10) {\n nodes {\n code\n }\n }\n startsAt\n endsAt\n customerSelection {\n ... on DiscountCustomerAll {\n allCustomers\n }\n }\n customerGets {\n value {\n ... on DiscountPercentage {\n percentage\n }\n }\n items {\n ... on AllDiscountItems {\n allItems\n }\n }\n }\n appliesOncePerCustomer\n }\n }\n }\n userErrors {\n field\n code\n message\n }\n }\n}" #### Graphql Input { "id": "gid://shopify/DiscountCodeNode/206265824", "basicCodeDiscount": { "endsAt": null, "customerGets": { "value": { "percentage": 0.4 } } } } #### Graphql Response { "data": { "discountCodeBasicUpdate": { "codeDiscountNode": { "codeDiscount": { "title": "percentage_off_code", "codes": { "nodes": [ { "code": "percentage_off_code" } ] }, "startsAt": "2024-09-03T01:05:24Z", "endsAt": null, "customerSelection": { "allCustomers": true }, "customerGets": { "value": { "percentage": 0.4 }, "items": { "allItems": true } }, "appliesOncePerCustomer": false } }, "userErrors": [] } } }