get https://api.supportbench.com/case/
You can retrieve a case and all of its data. All case fields, activities and their attachments are returned.
Responses
You can retrieve a case and all of its data. All case fields, activities and their attachments are returned.
xxxxxxxxxx
16var case_data = null;
var case_id = 'C-10691';
​
$.ajax({
url: 'https://api.supportbench.net/case/' + case_id,
type: 'get',
contentType: 'application/json',
dataType: 'json',
beforeSend: function(request) {
request.setRequestHeader('Authorization', 'Bearer ' + token);
},
success: function(r) {
case_data = r;
alert(case_data.id);
}
});