POST api/group/delete

Delete a group Processes this group API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

None.

Body Parameters

The group delete command data contract supplied with the request.

GroupDeleteCommandDataContract
NameDescriptionTypeAdditional information
Id

The unique identifier of this resource.

integer

None.

Reason

The reason value.

string

None.

Notes

The notes value.

string

None.

ForceUpdate

Indicates whether force update is true.

boolean

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "Id": 1,
  "Reason": "sample string 2",
  "Notes": "sample string 3",
  "ForceUpdate": true
}

Response Information

Resource Description

The response returned after the operation completes.

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.