Business Rule Permissions ========================= .. code-block:: http /api/repositories/{repository}/entities/{entityID}/businessrules/{ruleID}/permissions .. csv-table:: :header: Parameter, Type, Purpose :widths: 20, 20, 60 :stub-columns: 1 repository, string, The name of the :doc:`repository` the entity is in entityID, int, The ID of the :doc:`entity` the rule belongs to ruleID, int, The ID of the desired rule .. http:get:: /api/repositories/(string:repository)/entities/(int:entityID)/businessrules/(int:ruleID)/permissions :synopsis: Get list of edit and delete permissions for a business rule Get list of edit and delete permissions for a business rule .. code-block:: http GET /api/repositories/jupiter/entities/1/businessrules/1/permissions HTTP/1.1 Accept: application/json .. csv-table:: :header: Response Code, Reason :widths: 25, 75 200, No error 500, Server error The response is a :doc:`standard-response`, with the details of edit and delete permissions for the business rule. .. code-block:: json { "EDIT": "1", "DELETE": "1" } The value of `EDIT` and `DELETE` fields will be either `1` or `0` depending on whether the user can edit/delete business rules from the given entity.