Delete specific role
This endpoint deletes the specified role.
DELETE /openapi/v1/roles/{role_id}
Parameters: The request URL contains the following parameters
Name |
Type |
Description |
---|---|---|
role_id |
string |
Uniquely identifies the role. |
Response object: None.
Sample python code
role_id = '<role-id>'
restclient.delete('/roles/%s' % role_id)