PUT api/AccountSubGroup/Update
Request Information
URI Parameters
None.
Body Parameters
AccountSubGroupUpdateVM| Name | Description | Type | Additional information |
|---|---|---|---|
| SubGroupId | integer |
Required |
|
| SubGroupName | string |
Required String length: inclusive between 0 and 100 |
|
| Code | string |
String length: inclusive between 0 and 10 |
|
| AccountGroup | AccountGroupLookup |
Required |
|
| Status | string |
Required Matching regular expression pattern: A|I |
|
| UpdateUser | integer |
Required |
|
| UpdateIp | string |
Required String length: inclusive between 0 and 20 |
Request Formats
application/json, text/json
Sample:
{
"SubGroupId": 1,
"SubGroupName": "sample string 2",
"Code": "sample string 3",
"AccountGroup": {
"GroupId": 1,
"GroupName": "sample string 2"
},
"Status": "sample string 4",
"UpdateUser": 5,
"UpdateIp": "sample string 6"
}
application/xml, text/xml
Sample:
<AccountSubGroupUpdateVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
<AccountGroup>
<GroupId>1</GroupId>
<GroupName>sample string 2</GroupName>
</AccountGroup>
<Code>sample string 3</Code>
<Status>sample string 4</Status>
<SubGroupId>1</SubGroupId>
<SubGroupName>sample string 2</SubGroupName>
<UpdateIp>sample string 6</UpdateIp>
<UpdateUser>5</UpdateUser>
</AccountSubGroupUpdateVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.