DELETE api/group/{id}/deletegroupmember

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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The unique identifier of the requested resource.

integer

Required

Body Parameters

The group member delete command data contract supplied with the request.

GroupMemberDeleteCommandDataContract
NameDescriptionTypeAdditional information
Id

The unique identifier of this resource.

integer

None.

Reason

The reason value.

EnumDataContract

None.

Note

The note value.

string

None.

TenantInfoId

The unique identifier of the related tenant info resource.

integer

None.

LandLordInfoId

The unique identifier of the related land lord info resource.

integer

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "Id": 1,
  "Reason": {
    "Id": 1,
    "Name": "sample string 2",
    "SystemName": "sample string 3"
  },
  "Note": "sample string 2",
  "TenantInfoId": 1,
  "LandLordInfoId": 1
}

Response Information

Resource Description

The response returned after the operation completes.

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.