--- title: urlRedirectBulkDeleteBySavedSearch - GraphQL Admin description: Asynchronously delete redirects in bulk. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/admin-graphql/latest/mutations/urlredirectbulkdeletebysavedsearch md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/urlredirectbulkdeletebysavedsearch.md --- # url​Redirect​Bulk​Delete​By​Saved​Search mutation Requires `write_online_store_navigation` access scope. Also: Requires an active user. Asynchronously delete redirects in bulk. ## Arguments * saved​Search​Id [ID!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) required The ID of the URL redirect saved search for filtering. *** ## Url​Redirect​Bulk​Delete​By​Saved​Search​Payload returns * job [Job](https://shopify.dev/docs/api/admin-graphql/latest/objects/Job) The asynchronous job removing the redirects. * user​Errors [\[Url​Redirect​Bulk​Delete​By​Saved​Search​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/UrlRedirectBulkDeleteBySavedSearchUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### urlRedirectBulkDeleteBySavedSearch reference ## Mutation Reference ```graphql mutation urlRedirectBulkDeleteBySavedSearch($savedSearchId: ID!) { urlRedirectBulkDeleteBySavedSearch(savedSearchId: $savedSearchId) { job { # Job fields } userErrors { field message } } } ``` ## Input ```json { "savedSearchId": "gid://shopify//10079785100" } ``` ##### Variables ``` { "savedSearchId": "gid://shopify//10079785100" } ```