GET api.ashx/v2/activitystorysitepreferences.{json|xml}
LIST activity story site preference defaults.
Scopes
Activity Stories › Read Site Preferences activitystories.sitepreferences.readonly
Request Parameters
Name | Type | Location | Description | Required | Default | Options |
---|---|---|---|---|---|---|
Preferences | string | Comma-separated list of Preferences to filter by. Valid preferences are: ControlledOptIn, ControlledOptOut, AlwaysOnVisible, AlwaysOnHidden, AlwaysOff. | Optional |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({ url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/activitystorysitepreferences.json' }).then(function(response) { // use response });
Example Responses
JSON
{ "Preferences": [ { "StoryTypeId": "49fec544-6df7-4a82-872b-f8be586d5e9e", "LoggingPreference": "loggingpreference" }, { "StoryTypeId": "9f5a6721-639d-4e1d-ab6a-ce63b7750f46", "LoggingPreference": "loggingpreference" } ], "Info": [ "string", "string" ], "Warnings": [ "string", "string" ], "Errors": [ "string", "string" ] }
XML
<?xml version="1.0" encoding="utf-16"?> <Response> <Info> <Message>string</Message> <Message>string</Message> </Info> <Warnings> <Message>string</Message> <Message>string</Message> </Warnings> <Errors> <Message>string</Message> <Message>string</Message> </Errors> <Preferences> <RestActivityStorySitePreference> <StoryTypeId>49fec544-6df7-4a82-872b-f8be586d5e9e</StoryTypeId> <LoggingPreference>loggingpreference</LoggingPreference> </RestActivityStorySitePreference> <RestActivityStorySitePreference> <StoryTypeId>9f5a6721-639d-4e1d-ab6a-ce63b7750f46</StoryTypeId> <LoggingPreference>loggingpreference</LoggingPreference> </RestActivityStorySitePreference> </Preferences> </Response>