POST api/usrrole/update
Request Information
URI Parameters
None.
Body Parameters
UsrRole| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| DisplayOrder | integer |
Required |
|
| Custom1 | string |
None. |
|
| Custom2 | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "0336b98a-a4cf-4939-8cab-34535f83107b",
"Name": "sample string 3",
"Description": "sample string 4",
"DisplayOrder": 5,
"Custom1": "sample string 6",
"Custom2": "sample string 7"
}
application/xml, text/xml
Sample:
<UsrRole xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.Tools.Usr.Models"> <Custom1>sample string 6</Custom1> <Custom2>sample string 7</Custom2> <Description>sample string 4</Description> <DisplayOrder>5</DisplayOrder> <Id>1</Id> <Name>sample string 3</Name> <RowGuid>0336b98a-a4cf-4939-8cab-34535f83107b</RowGuid> </UsrRole>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
UsrRoleDisplay| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| DisplayOrder | integer |
Required |
|
| Custom1 | string |
None. |
|
| Custom2 | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "b73903d4-1682-4109-82c1-8c3806944b6e",
"Name": "sample string 3",
"Description": "sample string 4",
"DisplayOrder": 5,
"Custom1": "sample string 6",
"Custom2": "sample string 7"
}
application/xml, text/xml
Sample:
<UsrRoleDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.Tools.Usr.Models"> <Custom1>sample string 6</Custom1> <Custom2>sample string 7</Custom2> <Description>sample string 4</Description> <DisplayOrder>5</DisplayOrder> <Id>1</Id> <Name>sample string 3</Name> <RowGuid>b73903d4-1682-4109-82c1-8c3806944b6e</RowGuid> </UsrRoleDisplay>