POST api/favorites/remove
Remove Suppliers from Favorites list
Request Information
URI Parameters
None.
Body Parameters
Supplier Ids
| Name | Description | Type | Additional information |
|---|---|---|---|
| Ids |
Ids |
Collection of integer |
None. |
| OnContentSet |
On Content Set Options |
boolean |
Default value is False |
Request Formats
application/json, text/json
Sample:
{
"ids": [
1,
2
],
"onContentSet": true
}
Response Information
| Name | Description | Type | Additional information |
|---|---|---|---|
| Result |
Result |
boolean |
None. |
| Count |
Count |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": true,
"count": 2
}