# urlRedirectUpdate - admin-graphql - MUTATION Version: 2024-10 ## Description Updates a URL redirect. ### Access Scopes `write_online_store_navigation` access scope. ## Arguments * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! - The ID of the URL redirect to update. * [urlRedirect](/docs/api/admin-graphql/2024-10/input-objects/UrlRedirectInput): UrlRedirectInput! - The input fields required to update the URL redirect. ## Returns * [urlRedirect](/docs/api/admin-graphql/2024-10/objects/UrlRedirect): UrlRedirect Returns the updated URL redirect. * [userErrors](/docs/api/admin-graphql/2024-10/objects/UrlRedirectUserError): UrlRedirectUserError! The list of errors that occurred from executing the mutation. ## Examples ### Updates an existing redirect 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 UrlRedirectUpdate($id: ID!, $urlRedirect: UrlRedirectInput!) { urlRedirectUpdate(id: $id, urlRedirect: $urlRedirect) { urlRedirect { id path target } userErrors { field message } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/UrlRedirect/905192165\",\n \"urlRedirect\": {\n \"path\": \"/thepath\",\n \"target\": \"/thetarget\"\n }\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation UrlRedirectUpdate($id: ID!, $urlRedirect: UrlRedirectInput!) {\n urlRedirectUpdate(id: $id, urlRedirect: $urlRedirect) {\n urlRedirect {\n id\n path\n target\n }\n userErrors {\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/UrlRedirect/905192165\",\n \"urlRedirect\": {\n \"path\": \"/thepath\",\n \"target\": \"/thetarget\"\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 UrlRedirectUpdate($id: ID!, $urlRedirect: UrlRedirectInput!) {\n urlRedirectUpdate(id: $id, urlRedirect: $urlRedirect) {\n urlRedirect {\n id\n path\n target\n }\n userErrors {\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/UrlRedirect/905192165\",\n \"urlRedirect\": {\n \"path\": \"/thepath\",\n \"target\": \"/thetarget\"\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 UrlRedirectUpdate($id: ID!, $urlRedirect: UrlRedirectInput!) {\n urlRedirectUpdate(id: $id, urlRedirect: $urlRedirect) {\n urlRedirect {\n id\n path\n target\n }\n userErrors {\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/UrlRedirect/905192165\",\n \"urlRedirect\": {\n \"path\": \"/thepath\",\n \"target\": \"/thetarget\"\n }\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation UrlRedirectUpdate($id: ID!, $urlRedirect: UrlRedirectInput!) {\n urlRedirectUpdate(id: $id, urlRedirect: $urlRedirect) {\n urlRedirect {\n id\n path\n target\n }\n userErrors {\n field\n message\n }\n }\n}" #### Graphql Input { "id": "gid://shopify/UrlRedirect/905192165", "urlRedirect": { "path": "/thepath", "target": "/thetarget" } } #### Graphql Response { "data": { "urlRedirectUpdate": { "urlRedirect": { "id": "gid://shopify/UrlRedirect/905192165", "path": "/thepath", "target": "/thetarget" }, "userErrors": [] } } }