POST api/CustomerTag/DeleteCustomerTagsByIdAndInsertNewCustomerTags

Request Information

URI Parameters

None.

Body Parameters

DeleteCustomerTagsByIdAndInsertNewCustomerTagsRequest
NameDescriptionTypeAdditional information
TagId

integer

None.

UserList

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "TagId": 1,
  "UserList": [
    "7f967f80-63c5-41a2-b3f1-6540526bfaac",
    "457955ff-c38c-4e3b-894d-6f995469b917"
  ]
}

application/xml, text/xml

Sample:
<DeleteCustomerTagsByIdAndInsertNewCustomerTagsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <TagId>1</TagId>
  <UserList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>7f967f80-63c5-41a2-b3f1-6540526bfaac</d2p1:guid>
    <d2p1:guid>457955ff-c38c-4e3b-894d-6f995469b917</d2p1:guid>
  </UserList>
</DeleteCustomerTagsByIdAndInsertNewCustomerTagsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DeleteCustomerTagsByIdAndInsertNewCustomerTagsRequestResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true
}

application/xml, text/xml

Sample:
<DeleteCustomerTagsByIdAndInsertNewCustomerTagsRequestResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
  <Success>true</Success>
</DeleteCustomerTagsByIdAndInsertNewCustomerTagsRequestResponse>