Skip to content
Docs

Delete a Team invite code

DELhttps://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

inviteIdstringRequired
The Team invite code ID.
teamIdstringRequired
The Team identifier to perform the request on behalf of.
200Successfully deleted Team invite code.
idstringRequired
ID of the team.
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