GET api/InternalGroups/NewInternalGroup

Creates a new Internal group.

Request Information

URI Parameters

None.

Body Parameters

NewInternalGroupPost
NameDescriptionTypeAdditional information
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:
{
  "Color": "#ffffff",
  "Description": null,
  "Name": "Internal group"
}

application/xml, text/xml

Sample:
<NewInternalGroupPost 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>
</NewInternalGroupPost>

Response Information

Resource Description

Returns id

IHttpActionResult

None.