get https://api.supportbench.com/article/
You can retrieve an article and all of its data. All article fields and its attachments are returned.
Responses
You can retrieve an article and all of its data. All article fields and its attachments are returned.
xxxxxxxxxx
16var article_data = null;
var article_id = 'AR-1000';
​
$.ajax({
url: 'https://api.supportbench.net/article/' + article_id,
type: 'get',
contentType: 'application/json',
dataType: 'json',
beforeSend: function(request) {
request.setRequestHeader('Authorization', 'Bearer ' + token);
},
success: function(r) {
article_data = r;
article_id = article_data.id;
}
});