PUT api/v2/EntityActions/{id}
Request
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
EntityActionUpdateName | Description | Type | Additional information |
---|---|---|---|
Entity | string |
Required String length: inclusive between 0 and 100 |
|
Action | string |
Required String length: inclusive between 0 and 200 |
|
Tag | string |
Required String length: inclusive between 0 and 200 |
|
ReadOnlyAccess | boolean |
Required |
Request Formats
application/json, text/json
Sample:
{ "Entity": "sample string 1", "Action": "sample string 2", "Tag": "sample string 3", "ReadOnlyAccess": true }
text/html
Sample:
{"Entity":"sample string 1","Action":"sample string 2","Tag":"sample string 3","ReadOnlyAccess":true}
Response
EntityActionDetailName | Description | Type | Additional information |
---|---|---|---|
Tag | string | ||
ReadOnlyAccess | boolean | ||
Id | integer | ||
Entity | string | ||
Action | string |
Response Format
application/json, text/json
Sample:
{ "Id": 3, "Entity": "sample string 4", "Action": "sample string 5", "Tag": "sample string 1", "ReadOnlyAccess": true }
text/html
Sample:
{"Id":3,"Entity":"sample string 4","Action":"sample string 5","Tag":"sample string 1","ReadOnlyAccess":true}