GET api.ashx/v2/articles/article/{id}.{json|xml}
GET api.ashx/v2/articles/collection/{collectionId}/article/{identifier}.{json|xml}
Request Parameters
Name | Type | Location | Description | Required | Default | Options |
---|---|---|---|---|---|---|
ArticleCollectionId | Guid | Query String | Id of the article collection. | Required | ||
Identifier | string | Query String | Identifier of the article to return. | Required |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({ url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/articles/collection/{collectionId}/article/{identifier}.json?ArticleCollectionId=49fec544-6df7-4a82-872b-f8be586d5e9e', data: { 'identifier': 'identifier', 'ArticleCollectionId': '49fec544-6df7-4a82-872b-f8be586d5e9e' } }).then(function(response) { // use response });