Learn
Help
Socials
© 2025 make.com
Last updated 2 days ago
Create a new team in the organization with the specified organizationId.
organizationId
The name of the team.
The ID of the organization.
The maximum number of operations allowed for the team.
Successful response
const response = await fetch('/api/v2/teams', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "name": "New Team", "organizationId": 1 }), }); const data = await response.json();
{ "team": { "id": 0, "name": "text", "organizationId": 0, "operationsLimit": 0 }, "userTeamRole": { "usersRoleId": 0, "userId": 0, "teamId": 0, "changeable": false, "ssoPending": false } }