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