POST api/CustomerGroups/RemoveCustomer

Deletes relationship between customer and customer group.

Request Information

URI Parameters

None.

Body Parameters

RemoveCustomerCustomerGroupPost
NameDescriptionTypeAdditional information
CustomerId

Customer id

integer

None.

CustomerGroupId

The customer will be deleted for the Customer group with this id.

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "CustomerGroupId": 1
}

application/xml, text/xml

Sample:
<RemoveCustomerCustomerGroupPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Posts">
  <CustomerGroupId>1</CustomerGroupId>
  <CustomerId>1</CustomerId>
</RemoveCustomerCustomerGroupPost>

Response Information

Resource Description

IHttpActionResult

None.