GET api.ashx/v2/articles/article/{id}.{json|xml}
Request Parameters
| Name | Type | Location | Description | Required | Default | Options |
|---|---|---|---|---|---|---|
| Id | Guid | Query String | Id of the article to return. | Required | ||
| PostTarget | string | Query String | Render target. | Optional | WebServices | Unknown,Web,Syndication,Other,Print,Nntp,Email,WebQuote,WebServices |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({
url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/articles/article/{id}.json',
data: {
'id': '49fec544-6df7-4a82-872b-f8be586d5e9e'
}
}).then(function(response) {
// use response
});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
});