Learn
Help
Socials
© 2025 make.com
Last updated 1 month ago
Use the makeRequest method:
makeRequest
Include the query parameter ?confirmed=true, or you will receive an error and the team will not be deleted.
?confirmed=true
teamId = "65428"; const deleteTeam = await sdk.makeRequest({ apiPath: '/teams/'.concat(teamId), query: { confirmed: true, }, method: 'DELETE', responseSchema: Type.Object({ team: Type.String() }) });