This specialized search method matches all licensed content with the exact BusinessUnitContentId supplied in the search parameters, returning a small amount of meta-data for each document that matches the ContentId. The includedBlocked parameter is optional and defaults to false if not present. If includeBlocked is set to true, blocked documents will be included in the result xml with an attribute of blocked="true".
No sorting is applied to the search results.
Only HTTP GET and POST calls are supported at this time
Parameter Names: contentId, includeBlocked
Sample Request
http://external.ws.staywell.com/[SiteName]/Documents.svc/ContentSearchById?contentId=40011&includeBlocked=true
Sample Result XML
<?xml version="1.0" encoding="utf-8" ?>
<DocumentList xmlns="http://ws.staywell.com">
<Document ContentTypeId="3" ContentId="40011" IsCustom="0" blocked="true">
<RegularTitle xmlns="http://ws.staywell.com/markup">When You Need a Blood Transfusion</RegularTitle>
<InvertedTitle xmlns="http://ws.staywell.com/markup">Blood Transfusion, When You Need a</InvertedTitle>
</Document>
<Document ContentTypeId="3" ContentId="40011" IsCustom="1">
<RegularTitle xmlns="http://ws.staywell.com/markup">When You Need a Blood Transfusion</RegularTitle>
<InvertedTitle xmlns="http://ws.staywell.com/markup">Blood Transfusion, When You Need a</InvertedTitle>
</Document>
</DocumentList>