Delete an Alias
DEL
https://api.vercel.com/v2/aliases/{aliasId}Delete an Alias with the specified ID.
https://api.vercel.com/v2/aliases/{aliasId}
const response = await fetch('https://api.vercel.com/v2/aliases/aliasId?teamId=string&slug=string', { method: 'DELETE', headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN', 'Content-Type': 'application/json', },});
const data = await response.json();console.log(data);Response
{ "status": "SUCCESS"}AuthorizationbearerToken
Default authentication mechanism
aliasIdanyRequired
The ID or alias that will be removed
teamIdstringOptional
The Team identifier to perform the request on behalf of.
slugstringOptional
The Team slug to perform the request on behalf of.