# urlRedirectCreate - admin-graphql - MUTATION
Version: 2025-01

## Description
Creates a [`UrlRedirect`](https://shopify.dev/api/admin-graphql/latest/objects/UrlRedirect) object.

### Access Scopes
`write_online_store_navigation` access scope.


## Arguments
* [urlRedirect](/docs/api/admin-graphql/2025-01/input-objects/UrlRedirectInput): UrlRedirectInput! - The fields to use when creating the redirect.


## Returns
* [urlRedirect](/docs/api/admin-graphql/2025-01/objects/UrlRedirect): UrlRedirect The created redirect.
* [userErrors](/docs/api/admin-graphql/2025-01/objects/UrlRedirectUserError): UrlRedirectUserError! The list of errors that occurred from executing the mutation.


## Examples
### Creates a redirect
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 UrlRedirectCreate($urlRedirect: UrlRedirectInput!) { urlRedirectCreate(urlRedirect: $urlRedirect) { urlRedirect { id path target } userErrors { field message } } }\",\n \"variables\": {\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 UrlRedirectCreate($urlRedirect: UrlRedirectInput!) {\n      urlRedirectCreate(urlRedirect: $urlRedirect) {\n        urlRedirect {\n          id\n          path\n          target\n        }\n        userErrors {\n          field\n          message\n        }\n      }\n    }`,\n    \"variables\": {\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 UrlRedirectCreate($urlRedirect: UrlRedirectInput!) {\n    urlRedirectCreate(urlRedirect: $urlRedirect) {\n      urlRedirect {\n        id\n        path\n        target\n      }\n      userErrors {\n        field\n        message\n      }\n    }\n  }\nQUERY\n\nvariables = {\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 UrlRedirectCreate($urlRedirect: UrlRedirectInput!) {\n    urlRedirectCreate(urlRedirect: $urlRedirect) {\n      urlRedirect {\n        id\n        path\n        target\n      }\n      userErrors {\n        field\n        message\n      }\n    }\n  }`,\n  {\n    variables: {\n      \"urlRedirect\": {\n        \"path\": \"/thepath\",\n        \"target\": \"/thetarget\"\n      }\n    },\n  },\n);\n\nconst data = await response.json();\n"
Graphql query: "mutation UrlRedirectCreate($urlRedirect: UrlRedirectInput!) {\n  urlRedirectCreate(urlRedirect: $urlRedirect) {\n    urlRedirect {\n      id\n      path\n      target\n    }\n    userErrors {\n      field\n      message\n    }\n  }\n}"
#### Graphql Input
{
  "urlRedirect": {
    "path": "/thepath",
    "target": "/thetarget"
  }
}
#### Graphql Response
{
  "data": {
    "urlRedirectCreate": {
      "urlRedirect": {
        "id": "gid://shopify/UrlRedirect/984542199",
        "path": "/thepath",
        "target": "/thetarget"
      },
      "userErrors": []
    }
  }
}