POST api.ashx/v2/content/recommendation/ignore/{contentid}.{json|xml}
Request Parameters
| Name | Type | Location | Description | Required | Default | Options |
|---|---|---|---|---|---|---|
| contentid | Guid | Path | ContentId to ignore | Required |
Example Requests
Widget Javascript
jQuery.telligent.evolution.post({
url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/content/recommendation/ignore/{contentid}.json',
data: {
'contentid': '49fec544-6df7-4a82-872b-f8be586d5e9e'
}
}).then(function(response) {
// use response
});Example Responses
JSON
{
"Ignored": true,
"Errors": [
"string",
"string"
]
}XML
<?xml version="1.0" encoding="utf-16"?>
<Response>
<Ignored>true</Ignored>
<Errors>
<Message>string</Message>
<Message>string</Message>
</Errors>
</Response>