Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X DELETE 'https://api.example.com/role-permissions/role_123/perm_456' \ -H 'Authorization: Bearer YOUR_TOKEN'
const axios = require('axios'); const { data } = await axios.delete('https://api.example.com/role-permissions/role_123/perm_456', { headers: { 'Authorization': 'Bearer YOUR_TOKEN' }, });
{ "success": true }
Remove a permission from a role by specifying both IDs
Was this page helpful?