Skip to main content
DELETE
http://localhost:3000
/
role-assignments
/
{roleId}
/
{membershipId}
curl -X DELETE 'https://api.example.com/role-assignments/role_456/mem_123' \
  -H 'Authorization: Bearer YOUR_TOKEN'
{
  "success": true
}

Path Parameters

roleId
string
required
The role ID
membershipId
string
required
The membership ID

Response

Returns a success confirmation.
curl -X DELETE 'https://api.example.com/role-assignments/role_456/mem_123' \
  -H 'Authorization: Bearer YOUR_TOKEN'
{
  "success": true
}