--- title: urlRedirectBulkDeleteBySavedSearch - GraphQL Admin description: Asynchronously delete redirects in bulk. api_version: 2025-01 api_name: admin type: mutation api_type: graphql source_url: html: >- https://shopify.dev/docs/api/admin-graphql/2025-01/mutations/urlRedirectBulkDeleteBySavedSearch md: >- https://shopify.dev/docs/api/admin-graphql/2025-01/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/2025-01/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/2025-01/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/2025-01/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 ##### Variables ```json { "savedSearchId": "gid://shopify//10079785100" } ```