POST api/shrinkgroup/update/{ID}
Updates a single Shrink Group
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
The ID of the Shrink Group to update |
integer |
Required |
Body Parameters
The Shrink Group to update
ShrinkGroup| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
ID |
integer |
None. |
| Name |
Name of the KPI Department Grouping |
string |
None. |
| InternalName |
Internal name of the group |
string |
None. |
| ReasonIDs |
Which Reasons are in this group |
Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"name": "sample string 2",
"internalName": "sample string 3",
"reasonIDs": [
1,
2
]
}
application/xml, text/xml
Sample:
<ShrinkGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.KPI">
<ID>1</ID>
<InternalName>sample string 3</InternalName>
<Name>sample string 2</Name>
<ReasonIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</ReasonIDs>
</ShrinkGroup>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.