DELETE
/
api
/
{organization_id}
/
teams
/
{team_id}
/
members
/
{user_role_id}
Remove team member
curl --request DELETE \
  --url https://api.select.dev/api/{organization_id}/teams/{team_id}/members/{user_role_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

team_id
string<uuid>
required

The ID of the team

user_role_id
string<uuid>
required

The ID of the team membership (UserRole ID)

organization_id
string
required

Response

Successful Response

The response is of type object.