Remove role from group
DELETE
/groups/{groupName}/roles/{roleName}
const url = 'https://shoehorn.example.com/api/v1/groups/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/groups/example/roles/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” groupName
required
string
roleName
required
string
Responses
Section titled “ Responses ”Role removed from group