Delete project-level redirects.
DEL
https://api.vercel.com/v1/bulk-redirectsDeletes the provided redirects from the latest version of the projects' bulk redirects. Stages a new change with the new redirects and returns the alias for the new version in the response.
Request
import { Vercel } from "@vercel/sdk";
const vercel = new Vercel({ bearerToken: "<YOUR_BEARER_TOKEN_HERE>",});
async function run() { const result = await vercel.bulkRedirects.deleteRedirects({ projectId: "<id>", teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l", slug: "my-team-url-slug", });
console.log(result);}
run();Response
{ "alias": "string", "version": { "id": "icfg_1234567890", "key": "string", "lastModified": "123", "createdBy": "string", "name": "Example Name", "isStaging": "false", "isLive": "false", "redirectCount": "123", "alias": "string" }}AuthorizationbearerToken
Default authentication mechanism