PUT api/groups/{id}

Update a group name or description (Available to Admin Accounts Only)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The unique group id

integer

Required

Body Parameters

The updated group details.

UpdateGroupDTO
NameDescriptionTypeAdditional information
name

Group Name

string

None.

description

Group description

string

None.

tags

Group tags, comma seperated list of tags

string

None.

Request Formats

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "description": "sample string 2",
  "tags": "sample string 3"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UpdateGroupDTO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.