Teams
Remove Users from Team
Removes users from a specified team. With user permissions, the team must be one the requesting user has edit access to. With admin permissions, users can be removed from any team belonging to the account.
post/v1/teams/{id}/users/remove
Path parameters
idnumber required
ID of the team from which to remove users.
Headers
Lucid-Request-Asstring
If the requesting user is an account owner, team admin, or team manager with the required permissions and they make the request with the value of “admin” as this header and include an admin scope, the request will be made using their admin permissions.
Request body
Example request
{
"users": [
321,
654,
987
]
}Response
No Content. The users were successfully removed from the team. If requesting as admin, users may be have been removed even if the authenticated user does not have direct access to the specified team.