POST api/CustomerTag/DeleteCustomerFromTag
Request Information
URI Parameters
None.
Body Parameters
DeleteCustomerFromTagRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TagIdList | Collection of integer |
None. |
|
| UserId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"TagIdList": [
1,
2
],
"UserId": "dcbaa2d5-7199-4cc8-baae-b5cacf4ee4f3"
}
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>dcbaa2d5-7199-4cc8-baae-b5cacf4ee4f3</UserId>
</DeleteCustomerFromTagRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DeleteCustomerFromTagResponse| Name | Description | Type | Additional 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>