POST api/Customer/RemoveTag

Remove Tag from Customer.

Request Information

URI Parameters

None.

Body Parameters

CustomerTagPost
NameDescriptionTypeAdditional information
TagId

Tag id

integer

None.

CustomerId

Customer id

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "TagId": 1,
  "CustomerId": 2
}

application/xml, text/xml

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

Response Information

Resource Description

IHttpActionResult

None.