POST api/InternalGroups/UpdateInternalGroup

Edits the Internal group.

Request Information

URI Parameters

None.

Body Parameters

UpdateInternalGroupPost
NameDescriptionTypeAdditional information
Id

(Required) The Internal group Id.

integer

None.

Color

Color of the Internal group

string

None.

Description

Description of the Internal group

string

None.

Name

(Required) Name of the Internal group.

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Color": "#ffffff",
  "Description": null,
  "Name": "Internal group"
}

application/xml, text/xml

Sample:
<UpdateInternalGroupPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Posts">
  <Color>#ffffff</Color>
  <Description i:nil="true" />
  <Name>Internal group</Name>
  <Id>1</Id>
</UpdateInternalGroupPost>

Response Information

Resource Description

IHttpActionResult

None.