# discountAutomaticAppUpdate - admin-graphql - MUTATION Version: 2024-07 ## Description Updates an existing automatic discount that's managed by an app using [Shopify Functions](https://shopify.dev/docs/apps/build/functions). Use this mutation when you need advanced, custom, or dynamic discount capabilities that aren't supported by [Shopify's native discount types](https://help.shopify.com/manual/discounts/discount-types). For example, use this mutation to update a new "Volume" discount type that applies a percentage off when customers purchase more than the minimum quantity of a product. For an example implementation, refer to [our tutorial](https://shopify.dev/docs/apps/build/discounts/build-discount-function). > Note: > To update code discounts with custom logic, use the [`discountCodeAppUpdate`](https://shopify.dev/docs/api/admin-graphql/latest/mutations/discountCodeAppUpdate) mutation instead. ### Access Scopes `write_discounts` access scope. ## Arguments * [automaticAppDiscount](/docs/api/admin-graphql/2024-07/input-objects/DiscountAutomaticAppInput): DiscountAutomaticAppInput! - The input fields required to update the automatic discount. * [id](/docs/api/admin-graphql/2024-07/scalars/ID): ID! - The ID of the automatic discount to update. ## Returns * [automaticAppDiscount](/docs/api/admin-graphql/2024-07/objects/DiscountAutomaticApp): DiscountAutomaticApp The updated automatic discount that the app provides. * [userErrors](/docs/api/admin-graphql/2024-07/objects/DiscountUserError): DiscountUserError! The list of errors that occurred from executing the mutation. ## Examples ### Update an app-managed automatic discount title Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-07/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation discountAutomaticAppUpdate($automaticAppDiscount: DiscountAutomaticAppInput!, $id: ID!) { discountAutomaticAppUpdate(automaticAppDiscount: $automaticAppDiscount, id: $id) { automaticAppDiscount { title status appDiscountType { appKey functionId } } userErrors { field message } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/DiscountAutomaticNode/159339796\",\n \"automaticAppDiscount\": {\n \"title\": \"$5 discount\"\n }\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation discountAutomaticAppUpdate($automaticAppDiscount: DiscountAutomaticAppInput!, $id: ID!) {\n discountAutomaticAppUpdate(automaticAppDiscount: $automaticAppDiscount, id: $id) {\n automaticAppDiscount {\n title\n status\n appDiscountType {\n appKey\n functionId\n }\n }\n userErrors {\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/DiscountAutomaticNode/159339796\",\n \"automaticAppDiscount\": {\n \"title\": \"$5 discount\"\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 discountAutomaticAppUpdate($automaticAppDiscount: DiscountAutomaticAppInput!, $id: ID!) {\n discountAutomaticAppUpdate(automaticAppDiscount: $automaticAppDiscount, id: $id) {\n automaticAppDiscount {\n title\n status\n appDiscountType {\n appKey\n functionId\n }\n }\n userErrors {\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/DiscountAutomaticNode/159339796\",\n \"automaticAppDiscount\": {\n \"title\": \"$5 discount\"\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 discountAutomaticAppUpdate($automaticAppDiscount: DiscountAutomaticAppInput!, $id: ID!) {\n discountAutomaticAppUpdate(automaticAppDiscount: $automaticAppDiscount, id: $id) {\n automaticAppDiscount {\n title\n status\n appDiscountType {\n appKey\n functionId\n }\n }\n userErrors {\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/DiscountAutomaticNode/159339796\",\n \"automaticAppDiscount\": {\n \"title\": \"$5 discount\"\n }\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation discountAutomaticAppUpdate($automaticAppDiscount: DiscountAutomaticAppInput!, $id: ID!) {\n discountAutomaticAppUpdate(automaticAppDiscount: $automaticAppDiscount, id: $id) {\n automaticAppDiscount {\n title\n status\n appDiscountType {\n appKey\n functionId\n }\n }\n userErrors {\n field\n message\n }\n }\n}" #### Graphql Input { "id": "gid://shopify/DiscountAutomaticNode/159339796", "automaticAppDiscount": { "title": "$5 discount" } } #### Graphql Response { "data": { "discountAutomaticAppUpdate": { "automaticAppDiscount": { "title": "$5 discount", "status": "EXPIRED", "appDiscountType": { "appKey": "shopify-vm-test-app", "functionId": "135222cd-678c-47a9-880d-a59dba77d975" } }, "userErrors": [] } } } ### Update the date range of an app-managed automatic discount Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-07/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation discountAutomaticAppUpdate($automaticAppDiscount: DiscountAutomaticAppInput!, $id: ID!) { discountAutomaticAppUpdate(automaticAppDiscount: $automaticAppDiscount, id: $id) { automaticAppDiscount { title startsAt endsAt status } userErrors { field message } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/DiscountAutomaticNode/159339796\",\n \"automaticAppDiscount\": {\n \"startsAt\": \"2025-01-01T00:00:00Z\",\n \"endsAt\": \"2025-09-30T23:59:59Z\"\n }\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation discountAutomaticAppUpdate($automaticAppDiscount: DiscountAutomaticAppInput!, $id: ID!) {\n discountAutomaticAppUpdate(automaticAppDiscount: $automaticAppDiscount, id: $id) {\n automaticAppDiscount {\n title\n startsAt\n endsAt\n status\n }\n userErrors {\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/DiscountAutomaticNode/159339796\",\n \"automaticAppDiscount\": {\n \"startsAt\": \"2025-01-01T00:00:00Z\",\n \"endsAt\": \"2025-09-30T23:59:59Z\"\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 discountAutomaticAppUpdate($automaticAppDiscount: DiscountAutomaticAppInput!, $id: ID!) {\n discountAutomaticAppUpdate(automaticAppDiscount: $automaticAppDiscount, id: $id) {\n automaticAppDiscount {\n title\n startsAt\n endsAt\n status\n }\n userErrors {\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/DiscountAutomaticNode/159339796\",\n \"automaticAppDiscount\": {\n \"startsAt\": \"2025-01-01T00:00:00Z\",\n \"endsAt\": \"2025-09-30T23:59:59Z\"\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 discountAutomaticAppUpdate($automaticAppDiscount: DiscountAutomaticAppInput!, $id: ID!) {\n discountAutomaticAppUpdate(automaticAppDiscount: $automaticAppDiscount, id: $id) {\n automaticAppDiscount {\n title\n startsAt\n endsAt\n status\n }\n userErrors {\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/DiscountAutomaticNode/159339796\",\n \"automaticAppDiscount\": {\n \"startsAt\": \"2025-01-01T00:00:00Z\",\n \"endsAt\": \"2025-09-30T23:59:59Z\"\n }\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation discountAutomaticAppUpdate($automaticAppDiscount: DiscountAutomaticAppInput!, $id: ID!) {\n discountAutomaticAppUpdate(automaticAppDiscount: $automaticAppDiscount, id: $id) {\n automaticAppDiscount {\n title\n startsAt\n endsAt\n status\n }\n userErrors {\n field\n message\n }\n }\n}" #### Graphql Input { "id": "gid://shopify/DiscountAutomaticNode/159339796", "automaticAppDiscount": { "startsAt": "2025-01-01T00:00:00Z", "endsAt": "2025-09-30T23:59:59Z" } } #### Graphql Response { "data": { "discountAutomaticAppUpdate": { "automaticAppDiscount": { "title": "Percentage off (Product)", "startsAt": "2025-01-01T00:00:00Z", "endsAt": "2025-09-30T23:59:59Z", "status": "ACTIVE" }, "userErrors": [] } } }