Remove role from team
DELETE
/admin/teams/{id}/roles/{roleId}
const url = 'https://shoehorn.example.com/api/v1/admin/teams/example/roles/example';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://shoehorn.example.com/api/v1/admin/teams/example/roles/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
roleId
required
string
Responses
Section titled “ Responses ”Role removed