Delete a Team invite code
DEL
https://api.vercel.com/v1/teams/{teamId}/invites/{inviteId}Delete an active Team invite code.
https://api.vercel.com/v1/teams/{teamId}/invites/{inviteId}
const response = await fetch('https://api.vercel.com/v1/teams/teamId/invites/inviteId', { method: 'DELETE', headers: { 'Authorization': 'Bearer YOUR_ACCESS_TOKEN', 'Content-Type': 'application/json', },});
const data = await response.json();console.log(data);Response
{ "id": "icfg_1234567890"}AuthorizationbearerToken
Default authentication mechanism
400One of the provided values in the request query is invalid.
401The request is not authorized.
403You do not have permission to access this resource.
Invite managed by directory sync
Not authorized to access this team.
404Team invite code not found.
410Error