POST api/CustomerTag/DeleteCustomerFromTag

Request Information

URI Parameters

None.

Body Parameters

DeleteCustomerFromTagRequest
NameDescriptionTypeAdditional information
TagIdList

Collection of integer

None.

UserId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "TagIdList": [
    1,
    2
  ],
  "UserId": "1a1bd4b5-c4ac-4436-a1a5-8efffa5263cd"
}

application/xml, text/xml

Sample:
<DeleteCustomerFromTagRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <TagIdList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </TagIdList>
  <UserId>1a1bd4b5-c4ac-4436-a1a5-8efffa5263cd</UserId>
</DeleteCustomerFromTagRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DeleteCustomerFromTagResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

ExceptionMessage

string

None.

IsExistsList

Collection of integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "ExceptionMessage": "sample string 2",
  "IsExistsList": [
    1,
    2
  ]
}

application/xml, text/xml

Sample:
<DeleteCustomerFromTagResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
  <ExceptionMessage>sample string 2</ExceptionMessage>
  <IsExistsList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </IsExistsList>
  <Success>true</Success>
</DeleteCustomerFromTagResponse>