GET api.ashx/v2/presencesummary/content.{json|xml}
Gets a presence summary for a piece of content
Request Parameters
Name | Type | Location | Description | Required | Default | Options |
---|---|---|---|---|---|---|
ContentId | Guid | Query String | Content Id. Either ContentId and ContentTypeId or ContentUrl is required | Optional | ||
ContentTypeId | Guid | Query String | Content Type Id. Either ContentId and ContentTypeId or ContentUrl is required | Optional | ||
ContentUrl | Guid | Query String | Content URL. Either ContentId and ContentTypeId or ContentUrl is required | Optional | ||
TypeId | Guid | Query String | Presence Type Id | Optional |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({ url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/presencesummary/content.json' }).then(function(response) { // use response });
Example Responses
XML
<?xml version="1.0" encoding="utf-16"?> <Response> <ContentPresenceSummary /> <Errors> <Message>string</Message> <Message>string</Message> </Errors> </Response>